Created
October 22, 2018 03:16
-
-
Save sophistifunk/717c9578af709e959f35d2d5bd6ab30b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
agent any | |
stages { | |
stage('Alpha') { | |
parallel { | |
stage('Blue') { | |
steps { | |
script { | |
println "XXXX" | |
} | |
} | |
} | |
stage('Red') { | |
stages { | |
stage('Green') { | |
steps { | |
script { | |
println "XXXX" | |
} | |
} | |
} | |
} | |
} | |
} | |
} | |
stage('Bravo') { | |
steps { | |
script { | |
println "XXXX" | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment