Compare commits

..

No commits in common. "bee6a83f3391b0e2d6a8f872cf04876ec6de56f7" and "3f6ac9a021f6b7871bcd124003edc518e248664a" have entirely different histories.

9
Jenkinsfile vendored
View File

@ -245,19 +245,26 @@ pipeline {
sh './scripts/ci/build-cleanup' sh './scripts/ci/build-cleanup'
echo 'Reverting ownership' echo 'Reverting ownership'
sh 'docker run --rm -v $(pwd):/data jc21/gotools:latest chown -R "$(id -u):$(id -g)" /data' sh 'docker run --rm -v $(pwd):/data jc21/gotools:latest chown -R "$(id -u):$(id -g)" /data'
printResult() }
success {
juxtapose event: 'success'
sh 'figlet "SUCCESS"'
} }
failure { failure {
dir(path: 'test') { dir(path: 'test') {
archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml' archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml'
} }
archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true) archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true)
juxtapose event: 'failure'
sh 'figlet "FAILURE"'
} }
unstable { unstable {
dir(path: 'test') { dir(path: 'test') {
archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml' archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml'
} }
archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true) archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true)
juxtapose event: 'unstable'
sh 'figlet "UNSTABLE"'
} }
} }
} }