From b37ef94c227cd0e0b50528c61ea568ceb4d0767b Mon Sep 17 00:00:00 2001 From: Jamie Curnow Date: Tue, 1 Oct 2024 08:42:34 +1000 Subject: [PATCH] CI prints --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d117162..2bdabea 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -248,7 +248,7 @@ pipeline { } success { juxtapose event: 'success' - sh 'figlet "SUCCESS"' + printSuccess() } failure { dir(path: 'test') { @@ -256,7 +256,7 @@ pipeline { } archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true) juxtapose event: 'failure' - sh 'figlet "FAILURE"' + printFailure() } unstable { dir(path: 'test') { @@ -264,7 +264,7 @@ pipeline { } archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true) juxtapose event: 'unstable' - sh 'figlet "UNSTABLE"' + printUnstable() } } }