Guest User

Untitled

a guest
Dec 15th, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #!/usr/bin/env groovy
  2.  
  3. pipeline {
  4. agent any
  5. stages {
  6. stage("test") {
  7. steps {
  8. parallel (
  9. "Unit Test" : {
  10. build("unit-test-job")
  11. },
  12. "Component Test" : {
  13. build("component-test-job")
  14. },
  15. "Build" : {
  16. build("build-job")
  17. }
  18. )
  19. }
  20. }
  21. }
  22. }
Add Comment
Please, Sign In to add comment