Files
jenkinsdeclarativepipelines/004-parallelPipeline.groovy
Guillem Hernandez Sola 8d3b814b4a Added zero
2018-07-19 22:37:58 +02:00

21 lines
409 B
Groovy

pipeline {
agent none
stages {
stage("foo") {
steps {
parallel(
first: {
echo "First branch"
},
second: {
echo "Second branch"
}
)
}
}
}
}