Re: Is it possible to pass data from downstream job to it's parent job?

2017-06-23 Thread Richard Ginga
if you code it like this: stage ('Starting test job') { buildobj = build job: 'RunTestJob', parameters: [[$class: 'StringParameterValue', name: 'aaa', value: aaa]]} you might get something useful back by doing this: (i have not tried it) buildobj.getBuildVariables() available methods for bu

Is it possible to pass data from downstream job to it's parent job?

2017-06-23 Thread Danny Rehelis
Lets say I execute downstream job - stage ('Starting test job') { build job: 'RunTestJob', parameters: [[$class: 'StringParameterValue', name: 'aaa', value: aaa]]} Is it possible pass environment vars or any other vars I set in downstream job back to its parent? -- You received this message