[JIRA] [pipeline-stage-view-plugin] (JENKINS-34696) Fix the representation of Parallel Stage in pipeline build (as it is delivery pipeline view)

2016-05-12 Thread svano...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Sam Van Oort commented on  JENKINS-34696 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Fix the representation of Parallel Stage in pipeline build (as it is delivery pipeline view)  
 
 
 
 
 
 
 
 
 
 
alexandre_navarro I can understand the confusion, but parallel blocks may not contain stage steps within them: due to how stages are implemented within the pipeline, this is not a valid case. However, the labelled step enhancement will allow for naming chunks of code within blocks, and JENKINS-33185 can (and will) scan for the labels used to define each parallel branch.  
I am going to close this one out, since it's not possible with stages and the intended goal is already covered by the other enhancement. 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [pipeline-stage-view-plugin] (JENKINS-34696) Fix the representation of Parallel Stage in pipeline build (as it is delivery pipeline view)

2016-05-12 Thread svano...@cloudbees.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Sam Van Oort resolved as Duplicate 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34696 
 
 
 
  Fix the representation of Parallel Stage in pipeline build (as it is delivery pipeline view)  
 
 
 
 
 
 
 
 
 

Change By:
 
 Sam Van Oort 
 
 
 

Status:
 
 Open Resolved 
 
 
 

Resolution:
 
 Duplicate 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
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] [pipeline-stage-view-plugin] (JENKINS-34696) Fix the representation of Parallel Stage in pipeline build (as it is delivery pipeline view)

2016-05-09 Thread alexandre.j.nava...@gmail.com (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Alexandre Navarro created an issue 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 Jenkins /  JENKINS-34696 
 
 
 
  Fix the representation of Parallel Stage in pipeline build (as it is delivery pipeline view)  
 
 
 
 
 
 
 
 
 

Issue Type:
 
  Bug 
 
 
 

Assignee:
 
 Sam Van Oort 
 
 
 

Attachments:
 

 delivery-pipeline-view-screenshot.png, pipeline-screenshot.png 
 
 
 

Components:
 

 pipeline-stage-view-plugin 
 
 
 

Created:
 

 2016/May/09 8:54 PM 
 
 
 

Environment:
 

 jenkins 1.651 LTS 
 
 
 

Priority:
 
  Minor 
 
 
 

Reporter:
 
 Alexandre Navarro 
 
 
 
 
 
 
 
 
 
 
Fix the representation of Parallel Stage in pipeline build (as it is delivery pipeline view) 
1) With a Pipeline build This is my pipeline script 
node { stage 'compile' git 'https://github.com/hermod/hermod-java-ser-impl.git' 
 def mvnHome = tool 'maven-3.3.9' sh "$ {mvnHome} 
/bin/mvn -DskipTests clean install" 
 def deployments = [:] deployments["dev"] =  { stage 'deployOnDev' echo 'deployOnDev' }