Hi,

I have the below graph job definition ( via downstream ) and I want to 
migrate it to pipeline with parallel options.

              A
            /    \
           B    C
          /  \  /
         E   D

A -> B, C
B -> E, D
C -> D

B and C can run in parallel, D need to wait till B and C finished and E can 
run after B finished.

How I can do the same in pipeline ?

I tried the below, but 

stage 'Stage 1'
        build 'A'
       
       parallel one: {
             build 'B'
        }, second: {
            build 'C'
        }
       
      build 'D'

      build 'E'
}


in this configuration E will wait till C job finished.

Thanks,
Shurik

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/064a3396-6afa-451e-a9b5-b3877a3cf701%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to