jenkins
参数化作业。
定义了两个属性
想要根据为Property1选择的值在Property2中显示不同的值列表。
尝试在Property2的Groovy脚本中访问Property1
,$Property1
,%Property1%
。但是,似乎没有用。
脚本看起来像下面的
if ($Property1 == 'configuration1') {
return ['suite1','suite2', 'suite3']
} else if ($Property1 == 'configuration2') {
return ['suite3', 'suite4']
} else if ($Property1 == 'configuration3') {
return ['suite5', 'suite6']
}
即使将简单列表返回到Property2
也似乎无法使用像return ['suite1', 'suite2']
这样的Groovy脚本(只是尝试显示值列表而不检查条件)。我错过了什么吗?