From bee6a83f3391b0e2d6a8f872cf04876ec6de56f7 Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Tue, 1 Oct 2024 14:14:33 +1000 Subject: [PATCH] CI tweaks --- Jenkinsfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2bdabea..42329fc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -245,26 +245,19 @@ pipeline { sh './scripts/ci/build-cleanup' echo 'Reverting ownership' sh 'docker run --rm -v $(pwd):/data jc21/gotools:latest chown -R "$(id -u):$(id -g)" /data' - } - success { - juxtapose event: 'success' - printSuccess() + printResult() } failure { dir(path: 'test') { archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml' } archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true) - juxtapose event: 'failure' - printFailure() } unstable { dir(path: 'test') { archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml' } archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true) - juxtapose event: 'unstable' - printUnstable() } } }