如何在脚本化的詹金斯管道中定义全局变量
How do I define a global variable in a scripted jenkins pipeline
我想在 Jenkins 脚本化管道中定义一个全局变量,它可以在管道中的任何位置访问。即任何阶段和任何方法。
如果我在管道顶部定义 var,它在 node
声明和 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...]
我如何编写此 Jenkinsfile 以允许任何方法访问 DEBUG 变量?
- 您可以将变量作为参数传递
......
testMethod(DEBUG)
}
echo "<< node($jenkinsNode)"
}
def testMethod(DEBUG) {
echo ">> testMethod()"
if (DEBUG) {
echo "DEBUG is On"}
else {
echo "DEBUG is Off"
}
echo "<< testMethod()"
}
- 如果上述解决方案不是您要找的东西,使用
@Field
注释将按照此答案 中提到的那样工作
import groovy.transform.Field
@Field def DEBUG = 1
def jenkinsNode = 'master'
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()"
}
从顶部的声明中删除 def
解决了这个问题。
def jenkinsNode = 'linux'
DEBUG = 1
node(jenkinsNode){
echo ">> node($jenkinsNode)"
echo "DEBUG = $DEBUG"
if (DEBUG) {
.....
给出输出
>> node(linux)
[Pipeline] echo
DEBUG = 1
[Pipeline] echo
DEBUG is On
[Pipeline] stage
[Pipeline] { (test-this)
[Pipeline] echo
DEBUG is On
[Pipeline] echo
>> testMethod()
[Pipeline] echo
DEBUG is On
[Pipeline] echo
<< testMethod()
[Pipeline] }
[Pipeline] // stage
[Pipeline] echo
<< node(docker)
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
Finished: SUCCESS
这是因为使用 def
将变量绑定到当前作用域(方法内容不在其中)。不使用 def
不会绑定范围,允许它在脚本中的任何地方使用。
请注意,Groovy 不会阻止您在其他地方使用带有 def
的变量,这可能会导致意外结果,例如在方法
中添加一个def DEBUG = 0
def testMethod() {
echo ">> testMethod()"
def DEBUG = 0
if (DEBUG) {
echo "DEBUG is On"}
else {
echo "DEBUG is Off"
}
仍然 运行 没问题,但会在该方法中关闭 DEBUG。
我想在 Jenkins 脚本化管道中定义一个全局变量,它可以在管道中的任何位置访问。即任何阶段和任何方法。
如果我在管道顶部定义 var,它在 node
声明和 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...]
我如何编写此 Jenkinsfile 以允许任何方法访问 DEBUG 变量?
- 您可以将变量作为参数传递
......
testMethod(DEBUG)
}
echo "<< node($jenkinsNode)"
}
def testMethod(DEBUG) {
echo ">> testMethod()"
if (DEBUG) {
echo "DEBUG is On"}
else {
echo "DEBUG is Off"
}
echo "<< testMethod()"
}
- 如果上述解决方案不是您要找的东西,使用
@Field
注释将按照此答案 中提到的那样工作
import groovy.transform.Field
@Field def DEBUG = 1
def jenkinsNode = 'master'
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()"
}
从顶部的声明中删除 def
解决了这个问题。
def jenkinsNode = 'linux'
DEBUG = 1
node(jenkinsNode){
echo ">> node($jenkinsNode)"
echo "DEBUG = $DEBUG"
if (DEBUG) {
.....
给出输出
>> node(linux)
[Pipeline] echo
DEBUG = 1
[Pipeline] echo
DEBUG is On
[Pipeline] stage
[Pipeline] { (test-this)
[Pipeline] echo
DEBUG is On
[Pipeline] echo
>> testMethod()
[Pipeline] echo
DEBUG is On
[Pipeline] echo
<< testMethod()
[Pipeline] }
[Pipeline] // stage
[Pipeline] echo
<< node(docker)
[Pipeline] }
[Pipeline] // node
[Pipeline] End of Pipeline
Finished: SUCCESS
这是因为使用 def
将变量绑定到当前作用域(方法内容不在其中)。不使用 def
不会绑定范围,允许它在脚本中的任何地方使用。
请注意,Groovy 不会阻止您在其他地方使用带有 def
的变量,这可能会导致意外结果,例如在方法
def DEBUG = 0
def testMethod() {
echo ">> testMethod()"
def DEBUG = 0
if (DEBUG) {
echo "DEBUG is On"}
else {
echo "DEBUG is Off"
}
仍然 运行 没问题,但会在该方法中关闭 DEBUG。