RE: start jenkins sub jobs parallelly
I tried the below code, but that doesn't ensure the parallel run. #!groovy stage "preparation" node { parallel ( phase1: { echo "phase1" }, phase2: { echo "phase2" } ) } stage "do the build"
start jenkins sub jobs parallelly
I have 'n' no. of jobs, which I want to start simultaneously. Is it feasible in Jenkins? I tried using DSL plugin, work flow plugin. I have used 'parallel' method. I have my list of jobnames in an array/list and want to run them parallel. Please help. Currently I'm iterating the jobnames in a for