Skip to content

Instantly share code, notes, and snippets.

@manishmore
Created June 6, 2019 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manishmore/0cac3997d94b914bd51fc6b225a2a70b to your computer and use it in GitHub Desktop.
Save manishmore/0cac3997d94b914bd51fc6b225a2a70b to your computer and use it in GitHub Desktop.
Blue-Ocean fail
node() {
stage('Build') {
println 'I prepare the build for the parallel steps'
}
stage('Test') {
parallel (
"win7-vs2012" : { stage("checkout") { }; stage("build") { }; stage("test") { } },
"win10-vs2015" : { stage("checkout") { }; stage("build") { }; stage("test") { }},
"linux-gcc5" : { stage("checkout") { }; stage("build") { }; stage("test") { } }
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment