Remove agent from parallel stages.

This commit is contained in:
Manuele Simi 2019-08-31 15:52:19 -04:00
parent 5208c6d41a
commit dec84e20a1
1 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@ pipeline {
parallel {
stage('Branch A') {
agent {
label "for-branch-a"
label ""
}
steps {
echo "On Branch A"
@ -22,7 +22,7 @@ pipeline {
}
stage('Branch B') {
agent {
label "for-branch-b"
label ""
}
steps {
echo "On Branch B"
@ -30,7 +30,7 @@ pipeline {
}
stage('Branch C') {
agent {
label "for-branch-c"
label ""
}
stages {
stage('Nested 1') {