Guest User

Untitled

a guest
Dec 15th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. node {
  2. stage("example") {
  3. b = build(job: "example-job", propagate: false).result
  4. if(b == 'FAILURE') {
  5. echo "First job failed"
  6. currentBuild.result = 'UNSTABLE' // of FAILURE
  7. }
  8. }
  9. stage("test") {
  10. build("test-job")
  11. }
  12. }
Add Comment
Please, Sign In to add comment