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 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/7e74b1a1-c866-4750-97a9-4c890046a45d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to