目前我有一个管道作业,它有不同的参数,其中一个参数是Choice参数。以下是该作业参数的config.xml输出:
a
现在我可以通过传递字符串参数来从管道调用此作业:
b
但我无法找到一种方法来定义选择参数的参数:
我尝试了以下内容:
<hudson.model.ChoiceParameterDefinition>
<choices class="java.util.Arrays$ArrayList">
<a class="string-array">
<string>f1</string>
<string>f2</string>
<string>f3</string>
<string>f4</string>
</a>
</choices>
<name>WHERE</name>
<description>Something</description>
</hudson.model.ChoiceParameterDefinition>
但是由于以下错误而失败:
build job: "NameOfTheJob"", parameters:
[
[$class: 'StringParameterValue', name: 'BRANCH', value: "${BRANCH}"],
]
所以问题是:如何在调用其他管道作业时定义选择参数:
build job: "NameOfTheJob"", parameters:
[
[$class: 'StringParameterValue', name: 'BRANCH', value: "${BRANCH}"],
[$class: 'ChoiceParameterValue', name: 'WHERE', value: 'F3'],
]
有人有这样的例子吗?
答案 0 :(得分:20)
我见过一个使用以下语法的工作示例:
build job:'NameOfTheJob', parameters: [
string(name: 'FirstOption', value: "test"),
string(name: 'AnotherOption', value: "test12")
]
基本上,不要以特殊方式处理选择参数,只需将它们视为常规字符串参数。
答案 1 :(得分:10)
在脚本模式下,您也可以像这样执行此操作,此时它会出现错误,并且它希望将选项参数设置为换行符分隔字符串而不是数组。 在脚本模式下使用Pipeline和JenkinsFile时,您可以执行以下快速修复:
properties(
[parameters([choice(choices: ["A", "B", "C"].join("\n"),
description: 'Some choice parameter',
name: 'SOME_CHOICE')])])
您可以将它放在第一个节点语句之前,以便为构建添加参数。
更新:在Jenkins管道文件中使用扩展选项参数插件的示例多选:
com.cwctravel.hudson.plugins.extended_choice_parameter.ExtendedChoiceParameterDefinition extendedChoiceParameterDefinition = new com.cwctravel.hudson.plugins.extended_choice_parameter.ExtendedChoiceParameterDefinition(
"OPTION_NAME", // name
"PT_CHECKBOX", // type
"option1,option2,option3", // values
null, // projectName
null, // propertyFile
null, // groovyScript
null, // groovyScriptFile
null, // bindings
null, // groovyClasspath
null, // propertyKey
"option1,option2", // defaultValue
null, // defaultPropertyFile
null, // defaultGroovyScript
null, // defaultGroovyScriptFile
null, // defaultBindings
null, // defaultGroovyClasspath
null, // defaultPropertyKey
null, // descriptionPropertyValue
null, // descriptionPropertyFile
null, // descriptionGroovyScript
null, // descriptionGroovyScriptFile
null, // descriptionBindings
null, // descriptionGroovyClasspath
null, // descriptionPropertyKey
null, // javascriptFile
null, // javascript
false, // saveJSONParameterToFile
false, // quoteValue
10, // visible item count
"Select your options", // description
"," //multiSelectDelimiter
)
normalChoiceOptions = ["option1","option2"]
properties([
parameters([
choice(choices: normalChoiceOptions.join("\n"), description: 'Single select option', name: 'SOME_OPTION'),
extendedChoiceParameterDefinition
])
])
答案 2 :(得分:3)
根据c3st7n的提示,我测试了以下内容:
CGFloat current = CMTimeGetSeconds([self.player.currentItem currentTime]);
GCFloat diff = livePosition - current;
这很有效。
答案 3 :(得分:3)
如2020年9月在https://www.jenkins.io/doc/book/pipeline/syntax/#parameters上记录的那样,在管道中使用选择参数的记录语法为:
pipeline {
agent any
parameters {
choice(
name: 'CHOICE',
choices: ['one', 'two', 'three'],
description: ''
)
}
stages {
stage('Example') {
steps {
echo "Choice: ${params.CHOICE}"
sh "echo Choice: ${params.CHOICE}"
sh 'echo Choice: $CHOICE'
}
}
}
}
在测试中,该选择默认为列表中的第一个参数,我没有调查这是否有可能。
任务的所有三个版本执行相同的操作。请注意使用的特定引号。
答案 4 :(得分:1)
使用ExtendedChoiceParameterValue
代替ChoiceParameterValue
例如
[$class: 'ExtendedChoiceParameterValue', name: 'param_name', value: 'param_value']
答案 5 :(得分:0)
您可以使用 extendedChoice
代替 ChoiceParameterValue
喜欢:
build job: 'NameOfTheJob', parameters: [extendedChoice(name: 'WHERE', value: 'F3')]
詹金斯文档: https://www.jenkins.io/doc/pipeline/steps/pipeline-build-step/