I have a pipeline job named buildall which looks like this:
pipeline {
stages {
stage("job1") {
build job: "job1"
}
}
}
The buildall job has 25 parameters. I would like to pass all of buildall's parameters down to job1. Is there an easy way I can do that, instead of manually specifying each parameter?
In this question: Pipeline pass parameters to downstream jobs a sub-question was asked but never answered: Or even better, is there a less cumbersome way in which I can just pass ALL the pipeline parameters to the downstream job.
That's the same question that I have.