Created
September 13, 2016 11:42
-
-
Save yoshikaw/2209d6c96e60bd2b334ed4d61c3d3bd6 to your computer and use it in GitHub Desktop.
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
def map = [:] | |
map["fuga"] = { | |
stage('fuga') { | |
node { | |
sh "echo 'fuga'" | |
} | |
} | |
} | |
map["piyo"] = { | |
stage('piyo') { | |
node { | |
sh "echo 'piyo'" | |
} | |
} | |
} | |
map.failFast = true | |
stage 'hoge' | |
timestamps { | |
parallel map | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment