【发布时间】:2021-06-16 01:58:24
【问题描述】:
我想在 Jenkins 脚本化管道中定义一个全局变量,可以在管道中的任何位置访问该变量。即任何阶段和任何方法。
如果我在管道顶部定义 var,它在 node declration 和 stage 声明中有效,但在被调用方法中无效。
我不想使用 env.XXX 和 withEnv([]) 因为我可能不得不从不同的地方调用这些方法,这意味着有时使用 env 而不是其他的。
这是我用于脚本化管道的简单 JenkinsFile:
def jenkinsNode = 'linux'
def DEBUG = 1
node(jenkinsNode){
echo ">> node($jenkinsNode)"
echo "DEBUG = $DEBUG"
if (DEBUG) {
echo "DEBUG is On"}
else {
echo "DEBUG is Off"
}
stage('test-this') {
if (DEBUG) {
echo "DEBUG is On"}
else {
echo "DEBUG is Off"
}
testMethod()
}
echo "<< node($jenkinsNode)"
}
def testMethod() {
echo ">> testMethod()"
if (DEBUG) {
echo "DEBUG is On"}
else {
echo "DEBUG is Off"
}
echo "<< testMethod()"
}
当我运行它时,我得到:
Running on rh6-a01 in /jenkins_home/jenkins-rh6-a01/a98289de/workspace/test/test/test-global
[Pipeline] {
[Pipeline] echo
>> node(linux)
[Pipeline] echo
DEBUG = 1
[Pipeline] echo
DEBUG is On
[Pipeline] stage
[Pipeline] { (test-this)
[Pipeline] echo
DEBUG is Off
[Pipeline] echo
>> testMethod()
[Pipeline] }
[Pipeline] // stage
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
hudson.remoting.ProxyException: groovy.lang.MissingPropertyException: No such property: DEBUG for class: WorkflowScript
[...snip...]
如何编写允许任何方法访问 DEBUG 变量的 Jenkinsfile?
【问题讨论】:
-
全局变量通常在管道块之外定义。见stackoverflow.com/questions/52063864/…
-
是的,您提到的是声明式管道。我的查询专门针对脚本化管道。
-
抱歉你是对的。你只需要删除def。查看完整答案
标签: jenkins jenkins-pipeline pipeline cloudbees