https://issues.jenkins-ci.org/browse/JENKINS-54010

Le mar. 21 mai 2019 à 18:29, Sverre Moe <[email protected]> a écrit :

>
> Our build Scripted Pipeline have several stages each in parallel
> executions.
>
> [image: Screenshot_20190521_181654.png]
>
> I need to run two parallel Pipeline builds in the same Run.
> I want this Stage view to duplicate and be run in parallel.
>
> However my test parallel script does not look good in Blue Ocean. It is
> only one Stage.
>
> [image: Screenshot_20190521_182645.png]
>
>
> My test parallel Scripted Pipeline
>     parallel 'ReleaseA': {
>         stage("Checkout") {
>             println "Checkout"
>         }
>
>         stage("Build") {
>             parallel 'sles12.3-x86_64': {
>                 println "Build"
>             }, 'sles15.0-x86_64': {
>                 println "Build"
>             }
>         }
>
>         stage("Analysis") {
>             println "Analysis"
>         }
>
>         stage("Staging") {
>             parallel 'sles12.3-x86_64': {
>                 println "Staging"
>             }, 'sles15.0-x86_64': {
>                 println "Staging"
>             }
>         }
>
>         stage("Verify") {
>             parallel 'sles12.3-x86_64': {
>                 println "Verify"
>             }, 'sles15.0-x86_64': {
>                 println "Verify"
>             }
>         }
>
>         stage("Publish") {
>             parallel 'sles12.3-x86_64': {
>                 println "Publish"
>             }, 'sles15.0-x86_64': {
>                 println "Publish"
>             }
>         }
>     }, 'ReleaseB': {
>         stage("Checkout") {
>             println "Checkout"
>         }
>
>         stage("Build") {
>             parallel 'sles12.3-x86_64': {
>                 println "Build"
>             }, 'sles15.0-x86_64': {
>                 println "Build"
>             }
>         }
>
>         stage("Analysis") {
>             println "Analysis"
>         }
>
>         stage("Staging") {
>             parallel 'sles12.3-x86_64': {
>                 println "Staging"
>             }, 'sles15.0-x86_64': {
>                 println "Staging"
>             }
>         }
>
>         stage("Verify") {
>             parallel 'sles12.3-x86_64': {
>                 println "Verify"
>             }, 'sles15.0-x86_64': {
>                 println "Verify"
>             }
>         }
>
>         stage("Publish") {
>             parallel 'sles12.3-x86_64': {
>                 println "Publish"
>             }, 'sles15.0-x86_64': {
>                 println "Publish"
>             }
>         }
>     }
>
>
> --
> 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 [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/a0d4ee14-0121-4f74-8eac-bdb23a51696c%40googlegroups.com
> <https://groups.google.com/d/msgid/jenkinsci-users/a0d4ee14-0121-4f74-8eac-bdb23a51696c%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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 [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CANWgJS4S7eFv%2BBC0Ld-yQ-8tTn8SHMOzp1YEvfC6CkDPqAO5uQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to