-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
BlueOcean 1.10.1
When there are sequential stages in a parallel stage then the display of them is often not correct and very inconsistent - i.e. sometimes the display changes even from one build to the next.
This seems to apply only to running builds. As soon as the build is completed the stages are displayed correctly.
Note: this seems to be related to JENKINS-55320, but that one is about BlueOcean 1.9 and scripted stages. This one is about declarative stages and BlueOcean 1.10.1
This is the relevant part of my Jenkinsfile:
stage("Run Tests") { parallel { stage("Acceptance Tests") { steps { ... } } stage("Integration Tests") { steps { .... } } stage("IWG | DBG") { stages { stage("IWG Tests") { steps { ... } } stage("DBG Tests") { steps { ... } } } } stage("Payment Acceptance Tests") { steps { ... } } } }
- is related to
-
JENKINS-55605 can only click on the first active parallel stage, others running but cannot click
-
- Resolved
-
E.g. in one build the stage 'Integration Tests' was showing the sequential stages of the stage 'IWG | DBG'. See![](/secure/attachment/45590/45590_Screenshot+from+2019-01-07+15-57-37.png)