-
Bug
-
Resolution: Fixed
-
Critical
-
Jenkins version: 2.121.3
Blue Ocean version: 1.8.2
OS: RHEL7.2
Browser: Google Chrome
After updating the Blue ocean to the latest version 1.8.2 released 16 August, Blue Ocean is having issues displaying the status of parallel stages properly.
I have 2 stages in parallel which contains several sequential stage each.
While they are both processing, one of the parallel stages is showing as green (DONE) and the other shown as Processing but not displaying the triggered builds.
You can find my pipeline code below.
pipeline { agent any stages { stage('Pushing 2 Tests') { //failFast true parallel { stage('TE1') { stages { stage('PUSH TE1') { steps { script { //Trigger a job sleep time: 5, unit: 'MINUTES' echo "Test1" } } } stage('Archive Logs') { steps { script { echo "Archive Test1 Logs" } } } stage('Insert Metrics') { steps { script { echo "Insert Test1 Metrics in DB" } } } stage('Compare Metrics') { steps { script { echo "Compare Metrics Test1 vs REF" } } } } } stage('TE2') { stages { stage('PUSH TE2') { steps { script { //Trigger a job sleep time: 5, unit: 'MINUTES' echo "Test2" } } } stage('Archive Logs') { steps { script { echo "Archive Test2 Logs" } } } stage('Insert Metrics') { steps { script { echo "Insert Test2 Metrics in DB" } } } stage('Compare Metrics') { steps { script { echo "Compare Metrics Test2 vs REF" } } } } } } } } }
- duplicates
-
JENKINS-53311 [Blue Ocean] Sequential stages appear to be completed but are still executing
- Closed