在Jenkins Groovy中选择所有选项

时间:2016-09-30 23:37:30

标签: jenkins groovy selected

我想在我的Groovy脚本中选择所有选项,因此它默认为all。我正在使用Active Choices Reactive Parameter,因为我正在阅读上一个选项。如何制作我的"输出"变量所以在没有用户选择它们的情况下全部被选中?

def output = []
def line
def release = RELEASE_NUMBER
releaseNumber = release.replaceAll("\\n", "");
String[] number = releaseNumber.split("\\.");

def list = "cmd /c e:\\tools\\wget --no-check-certificate --http-user=username--http-password=password-qO- \"https://1.1.1.1:443/svn/Instructions/trunk/${number[0]}.${number[1]}.${number[2]}/ICAN/EI_${releaseNumber}.txt\"".execute().text
list.eachLine {
     if (it.contains("- LH")) {
         String newName = it.replaceAll("\\s", "");
         String newName2 = newName.replaceAll("-", "");
         output.add(newName2)
     }
}
return output

1 个答案:

答案 0 :(得分:2)

我对詹金斯一无所知,但阅读the documentation for the plugin you mention你应该可以简单地使用output.add("${newName2}:selected")