Created
June 6, 2019 14:06
-
-
Save manishmore/0cac3997d94b914bd51fc6b225a2a70b to your computer and use it in GitHub Desktop.
Blue-Ocean fail
This file contains hidden or 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
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