]
}
parallel single_repo_jobs
}
}
}
}
}
On Thursday, June 11, 2020 at 4:49:15 PM UTC+3, Roman O wrote:
&g
7;,') def
single_repo_jobs = repo_names.collectEntries { ["${it}" : { catchError {
stage(it) { build job: 'check-single-repo', parameters: [
string(name:'REPO_NAME', value: "${it}") ] } } } ] } parallel single_repo_jobs
} }
On Thursday, June 11
My goal is to run the same job check-single-repo on multiple repositories
in parallel.
Below pipeline doesn't seem to achieve the goal:
pipeline {
agent any
options {
ansiColor('xterm')
}
parameters {
extendedChoice