使用循环在Jenkins中使用build-flow插件运行并行构建

时间:2015-12-01 16:32:55

标签: loops groovy jenkins parallel-processing jenkins-build-flow

我正在使用构建流程插件在Jenkins中并行运行任务。最初这是有效的:

parallel (
    { build("jobX", param: params["inputVal1"])
    },
    {build("jobX",  param: params["inputVal2"])
    }
)

然而,我现在需要我在某种循环中写这个,因为作业的数量是动态的。我想做这样的事情(概念上):

parallel
(
    for(int i=1; i<=numOfJobs; i++)
    {
        build("jobX", param: params["inputVal" + i])
    }
)

Jenkins Buildflow plugin: how to make variable numbers of jobs in parallel?中提供了答案,但它并不完全符合我的需要。

1 个答案:

答案 0 :(得分:6)

你需要这样的东西:

parallel((1..numOfJobs).collect { index ->
    { -> build("job${index}", param: params["inputVal" + index]) }
})