有没有办法在参数化的构建步骤中显示位于工作区中的文件的信息性文本,具体取决于之前的条件(如使用活动的Choice插件)?
activeChoiceReactiveParam('branch') {
description('Select the branch you are going to use')
choiceType('SINGLE_SELECT')
groovyScript {
script('["develop", "master"')
fallbackScript('"Error. No branch to select."')
}
filterable(true)
}
答案 0 :(得分:0)
您可以使用属性文件将文本和参数从一个作业传递到另一个作业,并将其作为环境变量注入到您想要的作业中。 EnvInject plugin允许您在所需的作业中注入该属性文件。