I have a Job made with BuildFlow, this jobs receives a parameter like job1
, job2
, job1
job2
.
In my DSL I separate the value of the parameter with a split(",")
, so now I have an array with: ["job1","job2","job1 job2"]
.
Now i want to make the DSL run a subjob with X builds in parallel, where X is the size of the array, and iterate to get each position of the array as a paramater to pass to the build of the subjob.