How can I get the Build workspace for a inside job. I have a pipeline which builds jobs in the following:
node('TEST_UST') {
stage('test01') {
build job: 'test01'
}
stage('test02') {
build job: 'test02'
}
}
How Could I get the workspace of job test01?