我正在尝试运行一个Groovy脚本,该脚本在执行过程中在从属节点上运行进程时更新build.description
。
我的问题是,“系统常规脚本”仅在主节点上执行,“詹金斯常规脚本”在从属节点上运行,但是无法访问build
变量。
我有一个与此脚本类似的脚本:
import hudson.model.*
// works on slave node
def param = args[0]
// works on master node
//def param = build.getEnvironment(listener).get('Params')
def ws = new File(".").absolutePath
def myCommand = ws + "\\Something.exe " + param
def proc = myCommand.execute();
// Cannot use on slave
build.description = "Running executable..."
int exitVal = proc.waitFor();
// Cannot use on slave
build.description = "Executable finished"
有没有办法在从属服务器上运行的“ Jenkins Groovy脚本”上修改构建变量?
谢谢!
答案 0 :(得分:0)
否。
Jenkins管道对此类事情公开了更多控制权。
以下是我们拥有的脚本。 nodeexpression
可以是节点名称。
node(nodeexpression) {
println "env :"
echo sh(script: 'env|sort', returnStdout: true)
currentBuild.displayName = "branch ${BRANCH}:${MAIL_TO}"
currentBuild.description = "${BRANCH}:${MAIL_TO} : message -> ${MESSAGE}"
}