Skip to content

Instantly share code, notes, and snippets.

@sophistifunk
Created October 22, 2018 03:16
Show Gist options
  • Save sophistifunk/717c9578af709e959f35d2d5bd6ab30b to your computer and use it in GitHub Desktop.
Save sophistifunk/717c9578af709e959f35d2d5bd6ab30b to your computer and use it in GitHub Desktop.
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