Guest User

Untitled

a guest
Dec 15th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. // !!!!!!!!!!!!!!!!!!!!!!!!!!
  2. // DONT USE! BAD CODE
  3.  
  4. steps {
  5. parallel (
  6. "Unit Test" : {
  7. build("unit-test-job")
  8. },
  9. "Component Test" : {
  10. build("component-test-job")
  11. },
  12. "Build" : {
  13. build("build-job")
  14. }
  15. )
  16. // extra build step together with parallel block
  17. build("extra-job")
  18. }
  19. // !!!!!!!!!!!!!!!!!!!!!!!!!!
Add Comment
Please, Sign In to add comment