Jenkins Pipeline accessing environment variables

2020-02-19 05:45发布

I'm trying to use DSL pipelines in Jenkins. I thought it'd be nice if I could use the project name as part of my script.

git credentialsId: 'ffffffff-ffff-ffff-ffff-ffffffffffffff',\
url: "${repo_root}/${JOB_NAME}.git"

I get the error:

groovy.lang.MissingPropertyException: \
No such property: JOB_NAME for class: groovy.lang.Binding

I thought I followed these directions, and they mention JOB_NAME as one of the variables.

I decided to try:

sh 'env'

in my DSL, and this prints out:

JOB_NAME = foo-bar

which is what I expect.

Another blog mentions:

Usage of environment variables
We have two ways to get their value. The properties passed by -D= during the startup we could read as System.getProperty("key") thanks to the Groovy's strong relation with Java.

Reading normal environment variables in Java way is the System.getenv("VARIABLE")...

Let's try this:

println "JOB_NAME = " + System.getenv('JOB_NAME'); 

Now, I get:

java.lang.NullPointerException: Cannot get property 'System' on null object

Null object? But, I can see that JOB_NAME is an environment variable!

How do I read in the $JOB_NAME into a DSL script in a Pipeline job. I am trying a Pipeline job, and when I get that working will make this a Multibranch Pipeline with a Jenkinsfile.

4条回答
等我变得足够好
2楼-- · 2020-02-19 06:25

All environment variables are accessible using env, e.g. ${env.JOB_NAME}.

查看更多
来,给爷笑一个
3楼-- · 2020-02-19 06:39

I had an issue with this not working. The globally set properties/environment variables were only available inside a node step. It's a bug in version 2.4 of Pipeline plugin. Upgrade to 2.5 if you face this issue and your global properties will be available anywhere in the script. I've posted this to the Jenkins wiki here with the test script I used.

查看更多
Evening l夕情丶
4楼-- · 2020-02-19 06:42

Indeed just use ${env.JOB_NAME} to access a known variable.

However if you need to access environment variable where name is given by another variable (dynamic access), just use env["your-env-variable"].

I had the problem where I configured 3 environment variables (in Jenkins -> Administer -> Configure System -> Environment variables), let's name them ENV_VAR_1, ENV_VAR_2, ENV_VAR_3. Now I want to dynamically access them, I can do as such :

def envVarName = "ENV_VAR_" + count  // Suppose count is initialized in a loop somewhere above...

def value = env[envVarName]  // Will be resolved to env["ENV_VAR_1"] depending on count value

My environment variables in Jenkins configuration look like this :

enter image description here

查看更多
兄弟一词,经得起流年.
5楼-- · 2020-02-19 06:48

Okay this really vexed me for a while today. Ultimately, I was being done in by a couple of things:

  • Single-quoted strings in Groovy mean "don't evaluate variables," just like it does in bash
  • Using $ interpolation is completely unnecessary if you're just referencing the variable, so you can just do env.JOB_NAME.

This SO question proved to be the one that helped me crack the code: Jenkins Workflow Checkout Accessing BRANCH_NAME and GIT_COMMIT

查看更多
登录 后发表回答