Guest User

Untitled

a guest
Dec 15th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. node {
  2. // HEADS UP: this is Scripted Pipeline syntax
  3. stage("Build") {
  4. parallel (
  5. "First Build" : {
  6. build("first-build-job")
  7. },
  8. "Second Build" : {
  9. build("second-build-job")
  10. }
  11. )
  12. build("test-job")
  13. parallel (
  14. "Third Build" : {
  15. build("third -build-job")
  16. },
  17. "Last Build" : {
  18. build("last-build-job")
  19. }
  20. )
  21. }
  22. }
Add Comment
Please, Sign In to add comment