File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -248,23 +248,23 @@ pipeline {
248
248
}
249
249
success {
250
250
juxtapose event : ' success'
251
- sh ' figlet "SUCCESS" '
251
+ printSuccess()
252
252
}
253
253
failure {
254
254
dir(path : ' test' ) {
255
255
archiveArtifacts allowEmptyArchive : true , artifacts : ' results/**/*' , excludes : ' **/*.xml'
256
256
}
257
257
archiveArtifacts(artifacts : ' debug/*' , allowEmptyArchive : true )
258
258
juxtapose event : ' failure'
259
- sh ' figlet "FAILURE" '
259
+ printFailure()
260
260
}
261
261
unstable {
262
262
dir(path : ' test' ) {
263
263
archiveArtifacts allowEmptyArchive : true , artifacts : ' results/**/*' , excludes : ' **/*.xml'
264
264
}
265
265
archiveArtifacts(artifacts : ' debug/*' , allowEmptyArchive : true )
266
266
juxtapose event : ' unstable'
267
- sh ' figlet "UNSTABLE" '
267
+ printUnstable()
268
268
}
269
269
}
270
270
}
You can’t perform that action at this time.
0 commit comments