-
Bug
-
Resolution: Fixed
-
Major
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 "x"} } stage('a1') { steps { echo "x"} } } } stage('iOS') { stages { stage('b') { steps { echo "x"} } stage('b1') { steps { echo "x"} } } } } } } }
- duplicates
-
JENKINS-53162 Blueocean support for visualizing stages in parallel block in scripted pipeline
-
- Closed
-
- is related to
-
JENKINS-55438 Allow sequential stages inside parallel in Scripted syntax
-
- Open
-
-
JENKINS-39464 Pipeline with parallel and no stages does not get visualised correctly
-
- In Progress
-
[JENKINS-53751] The same parallel scripted and declarative pipelines rendered differently
Link |
New:
This issue is related to |
Link |
New:
This issue duplicates |
Link | New: This issue relates to JENKINS-55438 [ JENKINS-55438 ] |
Link | Original: This issue relates to JENKINS-55438 [ JENKINS-55438 ] |
Link | New: This issue is related to JENKINS-55438 [ JENKINS-55438 ] |
Resolution | New: Fixed [ 1 ] | |
Status | Original: Open [ 1 ] | New: Fixed but Unreleased [ 10203 ] |
Status | Original: Fixed but Unreleased [ 10203 ] | New: Resolved [ 5 ] |