0

I have 3 jobs building in pipeline job as below

node('master') {
    stage ('first')
    parallel firstBranch: {
    build 'job1'
    build 'job2'
    }
    stage ('second')
    build 'job3'
}

My job2 can take parameters and it should be passed from job1. How can I do that in pipeline?

I cannot use Parameterized Trigger Plugin as I don't want to trigger one job from another.

I want a way to pass the parameters from one job1 to job2 inside pipeline project.

Sreevalsa E
  • 905
  • 5
  • 17
  • 39

0 Answers0