例如,以下代码用于单选值
choice{ choices: 'Box\nOneDrive\nSharePointOnline\nGmail\nGDrive\nGenericS3', defaultValue: 'box', description: 'Connector to build', name: 'On_Cloud_Devices_To_Test' }
sbtkgmzw1#
我会使用booleanParam的。然后用户可以勾选所有需要的选项。
booleanParam(defaultValue: false, name: 'ALL', description: 'Process all'), booleanParam(defaultValue: false, name: 'OPTION_1', description: 'Process option 1'), booleanParam(defaultValue: false, name: 'OPTION_2', description: 'Process options 2'),
0s7z1bwu2#
您可以使用this page建议的“扩展选择参数”插件。由于参数列表很长,您可以将其 Package 到函数中:
import com.cwctravel.hudson.plugins.extended_choice_parameter.ExtendedChoiceParameterDefinition def checkBox (String name, String values, String defaultValue, int visibleItemCnt=0, String description='', String delimiter=',') { // default same as number of values visibleItemCnt = visibleItemCnt ?: values.split(',').size() return new ExtendedChoiceParameterDefinition( name, //name, "PT_CHECKBOX", //type values, //value "", //projectName "", //propertyFile "", //groovyScript "", //groovyScriptFile "", //bindings "", //groovyClasspath "", //propertyKey defaultValue, //defaultValue "", //defaultPropertyFile "", //defaultGroovyScript "", //defaultGroovyScriptFile "", //defaultBindings "", //defaultGroovyClasspath "", //defaultPropertyKey "", //descriptionPropertyValue "", //descriptionPropertyFile "", //descriptionGroovyScript "", //descriptionGroovyScriptFile "", //descriptionBindings "", //descriptionGroovyClasspath "", //descriptionPropertyKey "", //javascriptFile "", //javascript false, //saveJSONParameterToFile false, //quoteValue visibleItemCnt, //visibleItemCount description, //description delimiter //multiSelectDelimiter ) }
然后按如下方式使用它:
def testParam = checkBox("opt", // name "opt1,opt2,opt3", // values "opt1", //default value 0, //visible item cnt "Multi-select", // description ) properties( [parameters([testParam])] ) node { echo "${params.opt}" }
Jenkins构建参数:
顺便说一下,这是脚本化的管道语法。
2条答案
按热度按时间sbtkgmzw1#
我会使用booleanParam的。然后用户可以勾选所有需要的选项。
0s7z1bwu2#
您可以使用this page建议的“扩展选择参数”插件。
由于参数列表很长,您可以将其 Package 到函数中:
然后按如下方式使用它:
Jenkins构建参数:
顺便说一下,这是脚本化的管道语法。