Jenkins Choice parameter Passing to a pipeline Job

前端 未结 5 502
粉色の甜心
粉色の甜心 2020-12-30 03:00

Currently I have a pipeline job which has different paramters where one of this parameters is a Choice parameter. Here is the config.xml output of that job parameter:

<
5条回答
  •  醉酒成梦
    2020-12-30 03:44

    Use ExtendedChoiceParameterValue instead of ChoiceParameterValue

    e.g.

    [$class: 'ExtendedChoiceParameterValue', name: 'param_name', value: 'param_value']
    

提交回复
热议问题