-
Improvement
-
Resolution: Unresolved
-
Minor
-
None
-
Jenkins Version : 2.150.1
Blueocean Version : 1.11.1
Pipeline - Groovy : 2.63
Use Case:
I have two pipeline scripts name 1) Parent 2) Child.
I have Stages A & B in Parent pipeline script and Stages C, D, E and F in child pipeline script.
I will call child pipeline script using "load" in Stage B of parent script.
I am expecting Blueocean output display web-page should show all stages as per below.
O---A---B---C---D---F----O
Issue:
In the above use case, Jenkins blueocean display web-page showing only parent pipeline script stage details not child pipeline script pipeline stage details.
O----A----B----O
Hi is this similar to what i'm trying to do?
We use multiple labels for our nodes which leads to our stage names being cut off. I did have a secondary question regarding this. How can I set the display to use the node name instead of the labels? For example I have two parallel nodes running two stages but my view only shows it as two parallel single stages. Is it possible to have it show as parallel stages with their stage names?
![](/secure/attachment/46175/46175_image-2019-02-25-15-33-13-451.png)
stage("Build ${ARCH{color}}") {
sh("printenv")
copyRepos(MASTER_WORKSPACE)
runStage()
}
stage("Smoke ${ARCH{color}}") {
sh("printenv")
copyArtifacts()
}