-
Improvement
-
Resolution: Unresolved
-
Major
-
None
https://jenkins.io/blog/2018/07/02/whats-new-declarative-piepline-13x-sequential-stages/
As the links above, can i use for loops to reuse code.
def jobs = ["JobA", "JobB", "JobC"] def parallelStagesMap = jobs.collectEntries { ["${it}" : generateStage(it)] } def generateStage(job) { return { stage("stage: ${job}") { stages { stage ('complie') { agent xxx steps { echo "${job} complie." } } stage(‘build') { steps { echo “${job} build." } } } } } } pipeline { agent any stages { stage(‘xxx') { ... } stage('parallel stage') { steps { script{ parallel parallelStagesMap } } } } }
The above pipeline not work with error "No such DSL method ‘xxxx' found among steps "
Hi,
I have the same issue, trying to dynamically create parallel steps which have sequential steps inside them.