Skip to content

Commit b37ef94

Browse files
committed
CI prints
1 parent 3f6ac9a commit b37ef94

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -248,23 +248,23 @@ pipeline {
248248
}
249249
success {
250250
juxtapose event: 'success'
251-
sh 'figlet "SUCCESS"'
251+
printSuccess()
252252
}
253253
failure {
254254
dir(path: 'test') {
255255
archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml'
256256
}
257257
archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true)
258258
juxtapose event: 'failure'
259-
sh 'figlet "FAILURE"'
259+
printFailure()
260260
}
261261
unstable {
262262
dir(path: 'test') {
263263
archiveArtifacts allowEmptyArchive: true, artifacts: 'results/**/*', excludes: '**/*.xml'
264264
}
265265
archiveArtifacts(artifacts: 'debug/*', allowEmptyArchive: true)
266266
juxtapose event: 'unstable'
267-
sh 'figlet "UNSTABLE"'
267+
printUnstable()
268268
}
269269
}
270270
}

0 commit comments

Comments
 (0)