Skip to content

Instantly share code, notes, and snippets.

@koko-rauch
Last active April 27, 2017 12:34
Show Gist options
  • Save koko-rauch/b4a2c5f34b121ed7661fe4fde4b768f4 to your computer and use it in GitHub Desktop.
Save koko-rauch/b4a2c5f34b121ed7661fe4fde4b768f4 to your computer and use it in GitHub Desktop.
stages{
stage("Build") {
steps {
parallel(
"Linux": {
node('linux') {
script {
try {
// build
isSuccess = true // this doesnt work
}
catch (e) {
}
}}})}}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment