CI prints

This commit is contained in:
Jamie Curnow 2024-10-01 08:42:34 +10:00
parent 3f6ac9a021
commit b37ef94c22
No known key found for this signature in database
GPG Key ID: FFBB624C43388E9E

6
Jenkinsfile vendored
View File

@ -248,7 +248,7 @@ pipeline {
} }
success { success {
juxtapose event: 'success' juxtapose event: 'success'
sh 'figlet "SUCCESS"' printSuccess()
} }
failure { failure {
dir(path: 'test') { dir(path: 'test') {
@ -256,7 +256,7 @@ pipeline {
} }
archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true) archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true)
juxtapose event: 'failure' juxtapose event: 'failure'
sh 'figlet "FAILURE"' printFailure()
} }
unstable { unstable {
dir(path: 'test') { dir(path: 'test') {
@ -264,7 +264,7 @@ pipeline {
} }
archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true) archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true)
juxtapose event: 'unstable' juxtapose event: 'unstable'
sh 'figlet "UNSTABLE"' printUnstable()
} }
} }
} }