[JIRA] (JENKINS-59151) Blue ocean nodes are not marked red when parallel stage fails

2019-09-05 Thread vivek.pan...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Vivek Pandey resolved as Cannot Reproduce  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Looks like this has been fixed. Please try blueocean 1.18.1 or greater.   
 

  
 
 
 
 

 
 Jenkins /  JENKINS-59151  
 
 
  Blue ocean nodes are not marked red when parallel stage fails   
 

  
 
 
 
 

 
Change By: 
 Vivek Pandey  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Cannot Reproduce  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.201588.1567178973000.7253.1567695660741%40Atlassian.JIRA.


[JIRA] (JENKINS-59151) Blue ocean nodes are not marked red when parallel stage fails

2019-09-04 Thread victormartinezru...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Martinez commented on  JENKINS-59151  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Blue ocean nodes are not marked red when parallel stage fails   
 

  
 
 
 
 

 
 That particular pipeline works as expected in my case based on (see the below screenshot): 
 
Blue Ocean 1.18.1 
Jenkins Core 2.176.2 
 I'd recommend upgrading the version of Blue Ocean as it seems this particular behaviour doesn't happen with newer versions.   
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.201588.1567178973000.6320.1567582860218%40Atlassian.JIRA.


[JIRA] (JENKINS-59151) Blue ocean nodes are not marked red when parallel stage fails

2019-09-04 Thread victormartinezru...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Victor Martinez updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-59151  
 
 
  Blue ocean nodes are not marked red when parallel stage fails   
 

  
 
 
 
 

 
Change By: 
 Victor Martinez  
 
 
Attachment: 
 image-2019-09-04-08-31-15-005.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.11.2#711002-sha1:fdc329d)  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/jenkinsci-issues/JIRA.201588.1567178973000.6310.1567582323918%40Atlassian.JIRA.


[JIRA] (JENKINS-59151) Blue ocean nodes are not marked red when parallel stage fails

2019-08-30 Thread davidjack...@wawanesa.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 David Jackson created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-59151  
 
 
  Blue ocean nodes are not marked red when parallel stage fails   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Attachments: 
 BlueOceanBug.PNG  
 
 
Components: 
 blueocean-plugin, pipeline  
 
 
Created: 
 2019-08-30 15:29  
 
 
Environment: 
 Jenkins 2.176.2  Blueocean 1.7.2  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 David Jackson  
 

  
 
 
 
 

 
 

 

pipeline {
agent none
stages {
stage('Stage 1') {
steps {
echo "Stage 1"
}
}
stage('Parallel Stage') {
parallel {
stage('Stage 2') {
stages {
stage ('Stage 2.1') {
steps {
echo "Stage 2.1"
}
}

stage ('Stage 2.2') {
steps {
script {
def parallelStage2 = [:]

parallelStage2['Stage 2.2.1'] = {
echo "Stage 2.2.1"
}

parallelStage2['Stage 2.2.2'] = {
echo "Stage 2.2.2"