gpt4 book ai didi

groovy - 如何在 Jenkins Workflow 中编辑构建参数?

转载 作者:行者123 更新时间:2023-12-04 19:53:04 25 4
gpt4 key购买 nike

我知道您可以直接在 Jenkins 工作流中访问构建参数。我有一个名为 BRANCH_REVISION 的参数,我需要更新它,以便对 xml api 的调用将显示新值而不是原始值。这是我使用以下常规代码段在非工作流脚本中所做的事情:

def currentParamActions = build.getAction(ParametersAction.class)
def currentParams = currentParamActions.getParameters()

currentParams.each() {
if ( it.name.equals("BRANCH_REVISION") ) {
newParams.add( new StringParameterValue("BRANCH_REVISION", newRevision ) )
}
else {
newParams.add( it )
}
}

build.actions.remove(currentParamActions)
new_param_actions = currentParamActions.createUpdated(newParams)
build.actions.add(new_param_actions)

但是,这似乎在 Workflow 中不起作用,因为无法访问构建对象。在此先感谢您的帮助!

最佳答案

参见 <工作流作业配置> → 工作流程 → ☑ 代码段生成器 → 全局变量 → 变量:currentBuild:

The currentBuild variable may be used to refer to the currently running build. It is an object similar to that documented for the return value of the build step.



使用 currentBuild.build()而不是 build根据 org.jenkinsci.plugins.workflow.support.steps.build.RunWrapper 在您问题中的代码中这是 currentBuild 的类型.

关于groovy - 如何在 Jenkins Workflow 中编辑构建参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33453466/

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