gpt4 book ai didi

Jenkins 通过 DSL 启 Action 业,无需等待作业完成

转载 作者:行者123 更新时间:2023-12-02 18:36:45 26 4
gpt4 key购买 nike

我正在尝试通过 Jenkins DSL 启动一个项目,但不需要等待它完成。基本上我希望它能够启动一项孤儿工作。

node("slave-node")
{
// Launch pipeline job
stage("LaunchPipelineJob")
{
// this step runs for x mins and does a buch of work
echo "Starting pipelinejob"
def pipelinejob = build job: 'pipelineStep'
//echo "Pipeline job status: ${pipelinejob.result}"
}

// Launch the orphan
stage("LaunchOrphanJob")
{
// need to kick off this job, but dont care to wait for it to finish
echo "Starting orphanPipelinejob"
def orphanPipelinejob = build job: 'orphanStep'
}
}

我已经查看了 dsl,但找不到任何关于如何启动孤儿的文档。谢谢

最佳答案

这应该可以。

构建作业:'pipelineStep',传播:false,等待:false

关于Jenkins 通过 DSL 启 Action 业,无需等待作业完成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45848389/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com