gpt4 book ai didi

jenkins - 在 Jenkins Groovy 中选择所有选项

转载 作者:行者123 更新时间:2023-12-05 01:45:52 24 4
gpt4 key购买 nike

我想选择我的 Groovy 脚本中的所有选项,因此它默认为全部。我正在使用 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

最佳答案

我对 Jenkins 一无所知,但正在阅读 the documentation for the plugin you mention你应该能够简单地使用 output.add("${newName2}:selected")

关于jenkins - 在 Jenkins Groovy 中选择所有选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39801487/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com