-
Bug
-
Resolution: Unresolved
-
Blocker
-
None
Support scripted parallel blocks in parallel stages in a declarative pipeline.
Example pipeline:
pipeline {
agent none
stages {
stage('Parallel Stage') {
parallel {
stage('Stage 1') {
steps {
echo "Stage 1"
}
}
stage('Stage 2') {
steps {
script {
parallel (
"Stage 2.1.": {
echo "Stage 2.1."
},
"Stage 2.2.": {
echo "Stage 2.2."
}
)
}
}
}
}
}
}
}
Currently it is not properly visualized in blue ocean as shown in parallel-stages.png
The idea how it should be visualized is shown in parallel-stages-new.png
- is related to
-
JENKINS-50532 Failing nested parallel stages are marked green
-
- Resolved
-
- relates to
-
JENKINS-38442 View sequential stages in the pipeline visualization graph
-
- Closed
-