[JIRA] (JENKINS-53501) Render sequential stages that are not in parallel

2019-02-12 Thread ryan.ragn...@wnco.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ryan Ragnell commented on  JENKINS-53501  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: Render sequential stages that are not in parallel   
 

  
 
 
 
 

 
 The "Integration Tests" stage in Ilya's example is really a "wrapper" stage that should be displayed as such. It'd be nice if its progress could be shown as the cumulative progress of all of its "child" stages, displayed somewhere above all of the individual stages that fall under it.  
 

  
 
 
 
 

 
 
 

 
 
 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.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-53501) Render sequential stages that are not in parallel

2018-09-17 Thread ol...@apache.org (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Olivier Lamy updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53501  
 
 
  Render sequential stages that are not in parallel   
 

  
 
 
 
 

 
Change By: 
 Olivier Lamy  
 
 
Labels: 
 blueocean-backend  blueocean-ui  
 

  
 
 
 
 

 
 
 

 
 
 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.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-53501) Render sequential stages that are not in parallel

2018-09-17 Thread ol...@apache.org (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Olivier Lamy updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53501  
 
 
  Render sequential stages that are not in parallel   
 

  
 
 
 
 

 
Change By: 
 Olivier Lamy  
 
 
Labels: 
 blueocean-backend  
 

  
 
 
 
 

 
 
 

 
 
 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.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-53501) Render sequential stages that are not in parallel

2018-09-10 Thread ilyaleder...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Ilya Lederman created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53501  
 
 
  Render sequential stages that are not in parallel   
 

  
 
 
 
 

 
Issue Type: 
  Improvement  
 
 
Assignee: 
 Unassigned  
 
 
Attachments: 
 image-2018-09-10-14-04-00-895.png  
 
 
Components: 
 blueocean-plugin  
 
 
Created: 
 2018-09-10 21:05  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Ilya Lederman  
 

  
 
 
 
 

 
 The new sequential stages improvement is awesome and I understand it's meant for use in parallel, but I do have a use case where I am not using it in parallel.  Take this pipeline example for integration tests: 

 

stage('Integration Tests') {
options {
lock('ci-instrument')
}
stages {
stage('Setup') {
agent {
label 'ci-instrument'
}
steps {
sh ''
}
stage('Run Tests') {
agent {
dockerfile {

}
}
steps {
   sh 'NOT running on "ci-instrument", but it still needs to be locked"
}
}
stage('Copy results') {
 
}
}
} 

   This is visualized as   It would be nice to have the Setup, Run Tests, and Copy Test Results stages to be under the Integration Tests stage, either always visible or maybe clicking Integration Tests will pop up the stages under it.