Files
jenkinsdeclarativepipelines/04-parallelPipeline.groovy
Guillem Hernández Sola 8f2d4e6205 Added all commands
2017-04-03 15:26:42 +02:00

21 lines
409 B
Groovy

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