Added zero
This commit is contained in:
20
004-parallelPipeline.groovy
Normal file
20
004-parallelPipeline.groovy
Normal file
@@ -0,0 +1,20 @@
|
||||
pipeline {
|
||||
agent none
|
||||
stages {
|
||||
stage("foo") {
|
||||
steps {
|
||||
parallel(
|
||||
first: {
|
||||
echo "First branch"
|
||||
},
|
||||
second: {
|
||||
echo "Second branch"
|
||||
}
|
||||
)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user