Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
Jenkins LTS 2.121.3
Blue ocean 1.8.2
Description
We have a visualisation problem in new "Sequential Stages".
In some cases, sequential stages get a green check mark and appear to be completed even though they are still executing.
Minimal pipeline example:
pipeline { agent any stages { stage('Parallel') { failFast false parallel { stage('Nested B') { stages { stage('Nested B-1') { steps { echo 'Nested A-1' } } stage('Nested B-2') { steps { sleep time: 5, unit: 'MINUTES' } } } } stage('Nested C') { when { expression { false == true } } stages { stage('Nested C-1') { steps { echo 'Nested C-1' } } stage('Nested C-2') { steps { echo 'Nested C-2' } } } } stage('Nested A') { steps { sleep time: 5, unit: 'MINUTES' } } } } } }
Attachments
Issue Links
- is duplicated by
-
JENKINS-53129 Parallel sequential stages in Blue Ocean showing wrong status
-
- Closed
-
-
JENKINS-53555 Only one parallel steps displayed like in progress on UI
-
- Closed
-
-
JENKINS-53587 Sequential parallel stages show green while still running
-
- Closed
-
-
JENKINS-53547 Parallel sequential pipeline rendering appears distorted while jobs are running
-
- Reopened
-
- relates to
-
JENKINS-53816 [Blue Ocean] Completed stages appear to be skipped instead of finished
-
- Resolved
-
-
JENKINS-53547 Parallel sequential pipeline rendering appears distorted while jobs are running
-
- Reopened
-
Activity
Field | Original Value | New Value |
---|---|---|
Epic Link | JENKINS-43953 [ 181485 ] |
Description |
We have a visualisation problem in new "Sequential Stages". Stage likes completed when it is executed. Minimal pipeline example: pipeline { agent any stages { stage('Parallel') { failFast false parallel { stage('Nested B') { stages { stage('Nested B-1') { steps { echo 'Nested A-1' } } stage('Nested B-2') { steps { sleep time: 5, unit: 'MINUTES' } } } } stage('Nested C') { when { expression { false == true } } stages { stage('Nested C-1') { steps { echo 'Nested C-1' } } stage('Nested C-2') { steps { echo 'Nested C-2' } } } } stage('Nested A') { steps { sleep time: 5, unit: 'MINUTES' } } } } } } |
We have a visualisation problem in new "Sequential Stages". Stage likes completed when it is executed. Minimal pipeline example: {code:java} pipeline { agent any stages { stage('Parallel') { failFast false parallel { stage('Nested B') { stages { stage('Nested B-1') { steps { echo 'Nested A-1' } } stage('Nested B-2') { steps { sleep time: 5, unit: 'MINUTES' } } } } stage('Nested C') { when { expression { false == true } } stages { stage('Nested C-1') { steps { echo 'Nested C-1' } } stage('Nested C-2') { steps { echo 'Nested C-2' } } } } stage('Nested A') { steps { sleep time: 5, unit: 'MINUTES' } } } } } } {code} |
Attachment | Screen Shot 2018-09-13 at 16.52.57.png [ 44477 ] |
Summary | [Blue Ocean] New sequential stage likes completed when it is executed | [Blue Ocean] Sequential stages appear to be completed but are still executing |
Description |
We have a visualisation problem in new "Sequential Stages". Stage likes completed when it is executed. Minimal pipeline example: {code:java} pipeline { agent any stages { stage('Parallel') { failFast false parallel { stage('Nested B') { stages { stage('Nested B-1') { steps { echo 'Nested A-1' } } stage('Nested B-2') { steps { sleep time: 5, unit: 'MINUTES' } } } } stage('Nested C') { when { expression { false == true } } stages { stage('Nested C-1') { steps { echo 'Nested C-1' } } stage('Nested C-2') { steps { echo 'Nested C-2' } } } } stage('Nested A') { steps { sleep time: 5, unit: 'MINUTES' } } } } } } {code} |
We have a visualisation problem in new "Sequential Stages". In some cases, sequential stages get a green check mark and appear to be completed even though they are still executing. Minimal pipeline example: {code:java} pipeline { agent any stages { stage('Parallel') { failFast false parallel { stage('Nested B') { stages { stage('Nested B-1') { steps { echo 'Nested A-1' } } stage('Nested B-2') { steps { sleep time: 5, unit: 'MINUTES' } } } } stage('Nested C') { when { expression { false == true } } stages { stage('Nested C-1') { steps { echo 'Nested C-1' } } stage('Nested C-2') { steps { echo 'Nested C-2' } } } } stage('Nested A') { steps { sleep time: 5, unit: 'MINUTES' } } } } } } {code} |
Labels | pipeline windows | pipeline |
Assignee | Olivier Lamy [ olamy ] |
Link |
This issue is duplicated by |
Link |
This issue is duplicated by |
Assignee | Olivier Lamy [ olamy ] | Henry Borchers [ henryborchers ] |
Assignee | Henry Borchers [ henryborchers ] |
Assignee | Olivier Lamy [ olamy ] |
Status | Open [ 1 ] | In Progress [ 3 ] |
Resolution | Fixed [ 1 ] | |
Status | In Progress [ 3 ] | Fixed but Unreleased [ 10203 ] |
Link |
This issue is duplicated by |
Status | Fixed but Unreleased [ 10203 ] | Closed [ 6 ] |
Link | This issue relates to JENKINS-53547 [ JENKINS-53547 ] |
Link | This issue is duplicated by JENKINS-53547 [ JENKINS-53547 ] |
Link |
This issue relates to |