First, I want to say thank you to the devs for creating this awesome 
plugin, I really like how the UI feels and looks.

I have some trouble getting Blue Ocean to display the build correctly,I 
hope you guys can shed light on what I have done wrong or if there is 
current limitation on the Blue Ocean build display.

The following pipeline script kicks off workflow on three nodes 
simultaneously:

parallel 'Slave1':{

    node('TestSlave1') {
        stage ('configure') {
         ...
        }
        stage ('make') {
         ...
        }
        stage ('test') {
         ...
        }
    }
    
}, 'Slave2':{
    node('TestSlave2') {
        stage ('configure') {
         ...
        }
        stage ('make') {
         ...
        }
        stage ('test') {
         ...
        }
    }
}, 'Slave3':{
    node('TestSlave3') {
        stage ('configure') {
         ...
        }
        stage ('make') {
            dir('./setup-build') {
         ...
        }
        stage ('test') {
         ...
        }
    }
}

I expect Blue Ocean to display three parallel lines showing stages on each 
of these slaves but instead I got one straight line displaying all stages 
under 'Slave1' as shown in the attachment.

Am I doing something wrong at this moment? As far as I know, stages in 
parallel was implemented not long ago and perjaps Blue Ocean has not caught 
up with that update yet?

Anyway input will be greatly appreciated, thank you very much.

Kind regards,
Alan

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Developers" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-dev/df00fc10-58d2-465f-955f-062dba452aeb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to