Thank you. I'll try it.

Ivan Fernandez Calvo <[email protected]> 于2018年11月3日周六 上午1:04写道:

> You can make it with a pipeline with 2 stages in parallel with the same
> steps and different nodes somethinlike this
>
>
> pipeline{
>
> stages {
>   stage(‘parallel’) {
>     parallel {
>       stage(‘master’){
>         agent { label ‘master’}
>         steps{
>           //steps
>         }
>       }
>       stage(‘agent’){
>         agent { label ‘agent’ }
>         steps {
>           //steps
>         }
>       }
>     }
> }
>
> }
>
> On steps you could use the build step, it launch a job, or translate your
> job to pipeline
>
> https://jenkins.io/doc/book/pipeline/syntax/
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "Jenkins Users" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/jenkinsci-users/EWXcj5fm_kA/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> [email protected].
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/7e74b1a1-c866-4750-97a9-4c890046a45d%40googlegroups.com
> .
> 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/CAHdEBqzLYLPV%2BRgFFuch5-T%2B1xMfd6BK-gGkhEOD94sA0gyc5g%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to