[JIRA] (JENKINS-53751) The same parallel scripted and declarative pipelines rendered differently

2020-04-30 Thread martric...@web.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 tharilya commented on  JENKINS-53751  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: The same parallel scripted and declarative pipelines rendered differently   
 

  
 
 
 
 

 
 This Seems to be solved in the current version of the plugin. Can you confirm that? Taras Postument  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian Jira (v7.13.12#713012-sha1:6e07c38)  
 
 

 
   
 

  
 

  
 

   





-- 
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.194258.1537808551000.20015.1588262280262%40Atlassian.JIRA.


[JIRA] (JENKINS-53751) The same parallel scripted and declarative pipelines rendered differently

2018-09-24 Thread trane9...@gmail.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Taras Postument created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-53751  
 
 
  The same parallel scripted and declarative pipelines rendered differently   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Attachments: 
 declarative.log, declarative.png, scripted.log, scripted.png  
 
 
Components: 
 blueocean-plugin  
 
 
Created: 
 2018-09-24 17:02  
 
 
Labels: 
 blueocean  
 
 
Priority: 
  Major  
 
 
Reporter: 
 Taras Postument  
 

  
 
 
 
 

 
 Hello, I'm trying to migrate my Declarative pipelines to scripted ones and cannot reproduce behavior completely. In order to visualize issue I created 2 identical pipelines defined in a scripted way and in a declarative way.   Scripted: 

 

node {
stage("Build") {
parallel([
"Android":{ stage("Android"){ stage("a"){ echo "x" }; stage("a1"){ echo "x" }}},
"iOS":{ stage("iOS"){stage("b"){ echo "x" }; stage("a2"){ echo "x" }}}
])
}
}
 

 Declarative: 

 

pipeline {
agent any
stages {
stage('Build') {
failFast true
parallel {
stage('Android') {
stages {
stage('a') { steps { echo