groovy – 如何在Jenkins工作流中编辑构建参数?

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

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.

根据org.jenkinsci.plugins.workflow.support.steps.build.RunWrapper这是currentBuild的类型,使用currentBuild.build()代替构建问题中的代码.

相关文章

背景:    8月29日,凌晨4点左右,某服务告警,其中一个...
https://support.smartbear.comeadyapi/docs/soapui/steps/g...
有几个选项可用于执行自定义JMeter脚本并扩展基线JMeter功能...
Scala和Java为静态语言,Groovy为动态语言Scala:函数式编程,...
出处:https://www.jianshu.com/p/ce6f8a1f66f4一、一些内部...
在运行groovy的junit方法时,报了这个错误:java.lang.Excep...