Skip to content
Snippets Groups Projects
Commit 26f07d7d authored by Lukas Köhler's avatar Lukas Köhler
Browse files

pipeline testing

parent 2b557f1f
Branches
Tags
No related merge requests found
...@@ -31,45 +31,44 @@ node { ...@@ -31,45 +31,44 @@ node {
unHealthy: '' unHealthy: ''
) )
} }
stage('Run valgrind') { timeout(1) {
options { stage('Run valgrind') {
timeout(time: 60, unit: 'SECONDS') runValgrind(
childSilentAfterFork: false,
excludePattern: '',
generateSuppressions: false,
ignoreExitCode: false,
includePattern: 'binary',
outputDirectory: '',
outputFileEnding: '.valgrindReport',
programOptions: '',
removeOldReports: false,
suppressionFiles: '',
tool: [$class : 'ValgrindToolMemcheck',
leakCheckLevel : 'full',
showReachable : true,
trackOrigins : true,
undefinedValueErrors: true],
traceChildren: false,
valgrindExecutable: '',
algrindOptions: '',
workingDirectory: ''
)
publishValgrind(
failBuildOnInvalidReports: false,
failBuildOnMissingReports: false,
failThresholdDefinitelyLost: '',
failThresholdInvalidReadWrite: '',
failThresholdTotal: '',
pattern: '*valgrindReport',
publishResultsForAbortedBuilds: false,
publishResultsForFailedBuilds: false,
sourceSubstitutionPaths: '',
unstableThresholdDefinitelyLost: '0',
unstableThresholdInvalidReadWrite: '0',
unstableThresholdTotal: '0'
)
} }
runValgrind(
childSilentAfterFork: false,
excludePattern: '',
generateSuppressions: false,
ignoreExitCode: false,
includePattern: 'binary',
outputDirectory: '',
outputFileEnding: '.valgrindReport',
programOptions: '',
removeOldReports: false,
suppressionFiles: '',
tool: [$class : 'ValgrindToolMemcheck',
leakCheckLevel : 'full',
showReachable : true,
trackOrigins : true,
undefinedValueErrors: true],
traceChildren: false,
valgrindExecutable: '',
algrindOptions: '',
workingDirectory: ''
)
publishValgrind(
failBuildOnInvalidReports: false,
failBuildOnMissingReports: false,
failThresholdDefinitelyLost: '',
failThresholdInvalidReadWrite: '',
failThresholdTotal: '',
pattern: '*valgrindReport',
publishResultsForAbortedBuilds: false,
publishResultsForFailedBuilds: false,
sourceSubstitutionPaths: '',
unstableThresholdDefinitelyLost: '0',
unstableThresholdInvalidReadWrite: '0',
unstableThresholdTotal: '0'
)
} }
stage('Pull and compile cppunit tests') { stage('Pull and compile cppunit tests') {
sh( sh(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment