我有一个管道作业,该管道作业执行一些操作序列(例如,Build >> Run >> Report)。我已经将此序列放入for循环中,因为我可以获得一个参数,我应该重复同一序列多少次。请找到我编写的示例代码。
for (int i = 0; i < <param_val>; ++i){
node{
stage('Build') {
build 'Build'
}
stage('Run') {
build 'Run'
}
stage('Reporting') {
build 'Reporting'
}
}
}
现在我的代码正在等待一个完整的序列发生,然后继续运行下一个序列。那很费时间。我有更多的从属代理,可以并行运行序列。如何运行for循环的每次迭代?
我想到了一个解决方案: 具有实际顺序的管道
node{
stage('Build') {
build 'Build'
}
stage('Run') {
build 'Run'
}
stage('Reporting') {
build 'Reporting'
}
}
还有另一个带有for循环的管道,它将通过等待触发第一个管道:false:
for (int i = 0; i < <param_val>; ++i){
build(job: 'pipeline-1', wait: false)
}
这项工作吗?还是我们有更好的选择对单个管道执行相同的操作?
答案 0 :(得分:5)
将代码放入闭包中>
def oneNode = { c ->
node {
build job: 'Build', parameters: [string(name: 'Component', value: c)]
build 'Run'
build 'Reporting'
}
}
然后对要同时运行的所有闭包进行映射:
def jobs = [:]
def components = params.Componets.split(",")
for (int i = 0; i < components.size(); ++i) {
def component = components[i].trim()
jobs[component] = {
oneNode(component)
}
}
最后对生成的地图使用parallel
步骤:
stage('Build, run, report') {
<the code from the above steps>
parallel jobs
}
答案 1 :(得分:0)
这对我有用。
def jobs = [:]
def components = params.Componets.split(",")
stage('Build, run, report') {
for (int i = 0; i < components.size(); ++i) {
def index = i
def component = components[index].trim()
jobs[i] = {
node {
build job: 'Build', parameters: [string(name: 'Component', value: component)]
build 'Run'
build 'Reporting'
}
}
}
parallel jobs
}