-
Type:
Bug
-
Resolution: Unresolved
-
Priority:
Minor
-
Component/s: yet-another-build-visualizer-plugin
-
None
if you have a nested parallel job the visual layout is not really correct
it looks much better in blue ocean the layout
example
parallel Android: {
parallel PartOne: {
stage("Android One")
{
build propagate: true, job: "Android One"
}
Â
},
PartTwo: {
stage("Android Second")
{
build propagate: true, job: "Android Two"
}
},
failFast: false
Â
stage("Android Finally")
{
build propagate: true, job: "Android Finally"
}
},
iOS: {
Â
stage("iOS One")
{
build propagate: true, job: "iOS One"
}
Â
stage("iOS Two")
{
build propagate: true, job: "iOS Two"
}
Â
stage("iOS Three")
{
build propagate: true, job: "iOS Three"
}
},
failFast: false
Â