How To Set Jenkins Pipeline Environment Variables?

Praveen Mishra

Posted On: April 30, 2021

view count155752 Views

Read time14 Min Read

Jenkins is an open-source and extensible continuous integration and continuous deployment server. It is used to automate the process of continuous integration and continuous deployment(CI/CD). The importance of monitoring remote jobs and interacting with team members for stable code is immense; Jenkins takes care of all these requirements and allows a smooth integration via plugins, pipelines, and Jenkins environment variables.

If you are amongst the typical Jenkins users who want to add to their knowledge about CI and CD, some fundamental concepts must be learned. In this Jenkins tutorial, we will learn about the critical concept of Jenkins pipeline environment variables. We will also view and install the LambdaTest Jenkins plugin and use the in-build variables from the Jenkins environment variables list.

So, let’s get started!

What are Jenkins Pipeline Environment Variables?

While writing the script for a Jenkins pipeline, some dynamic values are to be injected and used. These are especially useful to avoid hardcoding every value into the pipeline. For this dynamic integration, Jenkins set environment variables.

A Jenkins environment variable, accessible via the ‘env’ variable, is a global value utilized in Jenkins pipelines and throughout Jenkinsfiles. It’s important to note that any value stored as an environment variable within ‘env’ is of string data type.

The Jenkins pipeline environment variables facilitate the benefits like :

  1. Injection of sensitive data at runtime to avoid the hardcoding into the pipeline.
  2. Addition of job parameters available only at runtime, but not at design time.
  3. Boolean values set in environment variables help certain toggle stages in a pipeline via a parameter that describes a specific subset of tests you want to run.
  4. Providing IDs of credentials defined in Jenkins.

In the Jenkins pipeline, there are a lot of helpful environment variables that can be accessed and maintained during build execution; some of the most useful ones are :

  1. env: env is used to access the Jenkins pipeline environment variables in groovy code as env.VARNAME or simply as VARNAME. The env prefix also accesses the environment variables provided in the Jenkins pipeline.
  2. currentBuild: As the name suggests, it addresses the currently running build of the Jenkins pipeline.
  3. params: All the parameters provided for a successful build from a read-only map with various typed variables. These can be accessed via params.
  4. docker: This is to provide convenient access to Docker – related functions in a Groovy script of Jenkins pipeline.

To ease building the pipeline, Jenkins has provided us with a Jenkins environment variables list. This list contains some of the most used variables. Let’s start by browsing through the list of environment variables.

Viewing Jenkins Environment Variables List

Jenkins exposes the crucial characteristics of components using environment variables. Thus, a set of these variables are already defined by Jenkins. This includes information about the job and the specific build that is running. Some of the most commonly used variables are :

Variable Name
Description
Example
JOB_NAME
Provides the name of the job in Jenkins
envvars
JOB_URL
Gives the URL to the job in the Jenkins UI
http://localhost:8082/job/envvars/
BUILD_NUMBER
Prints the build number in Jenkins console output
5,6, etc.
BUILD_TAG
Gives a unique tag for a specific job name and build number
envvars-build-8

The Jenkins environment variables list can be viewed using two different ways.

1. Via env-vars.html :

The environment variables can be viewed on an HTML page. You have to open the page on your Jenkins controller server. The steps to view the jenkins environment variables list are :

  1. At the address bar of chrome, type ${YOUR_JENKINS_HOST}/env-vars.html.
  2. The ${YOUR_JENKINS_HOST} itself is an environment variable defining the Jenkins host address/Jenkins URL(that would be http://localhost:8080/).
  3. And env-vars.html is the HTML file consisting of the list of all Jenkins environment variables.
  4. The page looks like this :

The page looks like this :

2. Via Windows batch script/shell command :

You can also list all the environment variables by writing the shell command in the groovy script of the Jenkins pipeline. The steps to do the same are :

  1. Create a new pipeline in Jenkins, named ‘envvars’.
  2. In the Pipeline Script, type the following groovy script.
  3. The windows batch command used here is “set”. This command lists all the Jenkins pipeline environment variables in logs.
  4. For Linux/Unix, you can use the shell command “printenv”, as :
    sh ‘printenv’ .
  5. This can be viewed as :

Jenkins Env Va

Reading Jenkins Environment Variables

In this section, we will see how you can read your Jenkins environment variables list. Let’s take it one step at a time-

  1. To access the Jenkins environment variables in a pipeline, you can use the env object, eg. env.BUILD_NUMBER will give the current build number of a pipeline. The reference to Jenkins pipeline environment variables is made by surrounding it by ${} in the following way: ${env.BUILD_NUMBER}
  2. You can also use the short version, which is BUILD_NUMBER. But this variant is quite confusing for some users. The script to read the build number via environment variables is :
  3. The console output of the build processed via the above script is :

Setting Jenkins Environment Variables

Jenkins environment variables are set both globally as well as locally. Global environment variables can be set via the UI of Jenkins, and local environment variables are set according to the pipeline, being declarative or scripted. The Jenkins pipeline environment variables can also be read from a properties file. For this, we use the Pipeline Utility Steps plugin. You can also inject the variables during the build startup via the EnvInject plugin.

Thus, different ways to set Jenkins environment variables are :

1. Creating Global Environment Variables

Global environment variables are the variables that can be used in any and every Pipeline or Job built on Jenkins. The global variables are set via the Jenkins console and via the groovy script of a pipeline. The ways to set these global environment variables are:

  • Using Jenkins Console :
  1. Log in to the Jenkins Server first.
  2. Jenkins Env Var 4

  3. On the upper left side, you will find a dropdown menu on the right of Jenkins; Select the dropdown menu.
  4. In the dropdown menu, you will find an option for Manage Jenkins. Please click on it.
  5. In the Manage Jenkins window, click on the Configure System. Here, you can configure global properties, commands, and a lot more.
  6. Find the Global properties section.
  7. In the Global properties section, tick the box of environment variables.
  8. As you will tick the box, the button to add the Jenkins environment variables list appears.
  9. Jenkins Env Var 6

  10. Click on Add. Two fields appear- Name and Value.
  11. You can provide multiple environment variables by clicking on the add button.
  12. This can be viewed as :

  • Using Java Code in Groovy Script :
  1. You can create Jenkins environment variables by using Java code in the Groovy script. This code is to be written in the pipeline script section when a new pipeline is created.
  2. The required code is :

In java, createGlobalEnvironmentVariables() method is used to create new global environment variables. Here, the environment variable named, “Var1” is created having the value “Dummy”.

  • Using Jenkins File :
  1. You can populate the environment variable using a Jenkins file.
  2. There might be a file in your code repository where some configuration properties for your app are saved, Or the file would be available on fileshare somewhere.
  3. There is a plugin in Jenkins that can be used to read these properties from a file. This is the Pipeline Utility Steps plugin.
  4. So, firstly install the Pipeline Utility Steps plugin. This provides the readProperties step, which makes it easy to read properties from a file.
  5. Click on Manage Jenkins on the left column.
  6. Select Manage Plugins and go to the Available Tab.
  7. In the filter box, type pipeline utility steps.
  8. You will find the plugin listed, select the checkbox in front of Pipeline Utility Steps and click on the install button.
  9. After successful installation, you will find the required plugin under the Installed tab.
  10. Also, define Java .properties file with some key and value pairs. The properties file is used to store the username, password, access tokens etc., which cannot be hardcoded due to privacy. As shown below :
  11. Then, you can read these values from the properties file using the .readProperties step, provided by Pipeline Utility Steps plugin.
  12. To read and use the key-value pairs, you have to write the following stage in your groovy script.
  13. This way, you can read the properties from the file and save them as environment variables. Remember, Jenkins will search the properties file in the local workspace. If your file is not present in the local workspace, do provide the path to the properties file.
  14. The output to the above groovy script for reading properties file will be :

2. Creating Local Environment Variables

The local environment variables are the variables explicitly defined for a particular job in Jenkins. These are defined according to the pipeline and its type. There are declarative pipelines as well as scripted pipelines. The Jenkins declarative Pipelines break down the stages into individual stages that can contain multiple steps; Scripted pipelines, on the other hand, use groovy code and references within the stages without any extra efforts. Because of this difference, the code for creating local environment variables is different for the two types of pipelines.

  • Using Declarative Pipeline:
  1. The Jenkins declarative pipeline uses an environment directive to define local environment variables. The environment directive looks like:
  2. The environment directive can be placed at the beginning of the pipeline. Then, the variable declared in the directive can be used in all steps. The groovy code for the same is:
  3. The directive can also be placed in the stages. Thus, that variable can be used only in steps of that particular stage
  4. The output to the above groovy script is :
  • Using Scripted Pipeline:
  1. Create nodes for the scripted pipeline.
  2. In the scripted pipelines, use withEnv to define local Jenkins environment variables. The withEnv([“env=value]) {} block can also be used to override any environment variable.
  3. The simple code to declare local environment variables is :
  4. The output to the above groovy script will give the value of environment variable ‘DISABLE_AUTH’ :

3. Injecting Environment Variables in Freestyle Projects

Injecting Jenkins environment variables can be done with the help of a plugin. This plugin is the EnvInject plugin. You can install the EnvInject plugin and inject the environment variables during the build startup. This makes it possible to set up a custom environment for all Jenkins jobs. This plugin is used massively in the freestyle projects of Jenkins. The steps that demonstrate the usage of the EnvInject plugin are:

  1. Log in to the Jenkins server with your credentials.
  2. On the leftmost side, you will find the New Item option. Click on that, and a new window appears.
  3. Enter the Item name and select the Item type from the types available like freestyle project, pipeline, multibranch pipeline, folder etc.
  4. You can provide the name of an existing job if you want this job to be its replica, or you can leave it blank and then click on OK.
  5. Your freestyle project is created.
  6. Click on configure to alter the project and to inject Jenkins environment variables.
  7. In the Source Code Management section, select the None option as we are not fetching code from any code repository. You can choose Git if you want to fetch the code from a Git repository.
  8. You can also select checkboxes in the Build Triggers and Build Environment section to do the necessary settings required.
  9. In the Build section, click on the drop-down Add Build Steps. (This provides the steps taken before a successful build happens.)
  10. Select Inject environment variables from the drop-down. A dialog box will be added to the build section.
  11. In this box, specify the Properties File Path if you have the environment variables defined in a properties file separately.
  12. You can also add environment variables in the Properties Content directly without specifying the file path. Here, ‘Username’ is the environment variable with ‘root’ as its value.
  13. You can also select an option from the drop-down, Post-build Actions to be performed after the successful build.
  14. Click Save and Apply. Your freestyle project is configured successfully.
  15. The output shows that the given environment variable is injected successfully.

Capturing bat Command Output in the Environment Variable

You can capture the output of a shell command or batch command as a Jenkins environment variable and use it in later stages of the pipeline. For that you need to use the exact given syntax – bat(script: ‘cmd’, returnStdout:true). This is to force the bat command to return the output to be captured and stored in an environment variable. The steps to store the output into a Jenkins environment variable are:

  1. Here, we have taken the dir command, and we will capture its output in an environment variable named LS.
  2. We have used a script block to save the output in LS, and then we have accessed the same variable and displayed the saved content.
  3. The groovy script that works for the same is :
  4. The trim() method is used to avoid the new line character present in the batch output. It also removes the whitespaces from the beginning and the end of the captured output.
  5. The console output of a successful build for the pipeline which captures bat output in an environment variable is :
  6. In Linux/Unix, you can capture the output from the shell command to the Jenkins environment variable. As the shell commands are different, the syntax will be changed. This will be sh(script:’ls -lah’, returnStdout: true).trim().

Jenkins Set Environment Variables Using LambdaTest Plugin

As the installation of a plugin is facilitated, new environment variables are added to the jenkins environment variables list. Here, we will install the LambdaTest Jenkins plugin and view the environment variables added by this plugin.

LambdaTest Jenkins plugin helps in pacing up your automated cross browser testing cycles. This easily automates your Selenium test scripts by connecting the Jenkins instance to the LambdaTest Selenium Grid. LambdaTest offers you an expansive library of 3000+ browser and browser versions so as to achieve higher test coverage while performing automation testing using the Selenium suite. You can view the steps to install the LambdaTest Jenkins plugin by clicking here. Some new environment variables added due to the LambdaTest Jenkins plugin are:

Environment Variables
Description
Example
$LT_USERNAME
Username (this will be configured as LambdaTest Credentials)
mohit10@gmail.com
$LT_ACCESS_KEY
This is a LambdaTest Access Token and can be retrieved from the profile section of your LambdaTest Account.
iHnnmi0atXDjDKIqckdBH0gU72Uf8zJb76EyNlXjzvGPzvr54
$LT_GRID_URL
This is the LambdaTest hub URL. This is the URL of the grid where tests will be run.
https://{username}:{accessToken}@hub.lambdatest.com/wd/hub
$LT_OPERATING_SYSTEM
This is used to provide the operating system with which you want to test your website.
WIndows 10
$LT_BROWSER_NAME
This is to give the name of the browser on which you wish to test.
Chrome
$LT_BROWSER_VERSION
Specific browser version on which you want to test.
89.0
$LT_BUILD_NAME
For a particular build name.
build_1
$LT_BROWSERS

This gives an array of specifications of different browsers.
[ {
"operatingSystem":"win10",
"browserName":"Chrome", "browserVersion": "78.0", "resolution": "1024x768" },
{
"operatingSystem":"win8", "browserName": "Firefox", "browserVersion": "67.0",
"resolution": "1024x768" } ]
$LT_RESOLUTION
This is to set the screen resolution.
1024x768
$LT_TUNNEL_NAME
This is to provide the name of a tunnel for local testing.
tunnel_lambdatest
$LT_TUNNEL
This is a boolean variable used to specify whether a lambdatest tunnel is used or not.
true

When set in the Jenkins pipeline, these environment variables provide the required information for the LambdaTest integration with Jenkins. The groovy script to set these environment variables in a pipeline is :

This is a simple groovy script to just set and print the environment variables in the build's console output. The Console Output looks like this:

Using Jenkins Pipeline Environment Variables with LambdaTest Jenkins Plugin

Before we jump off to learn about the practical usage of Jenkins environment variables, let us understand the pre-requisites for the plugin.

Pre-requisites:

  1. A Git repository containing Selenium Test: This is a sample project with some Nightwatch tests scripts; We will run these tests script from Jenkins on the LambdaTest Selenium Grid Cloud. The URL to the repository is: https://github.com/LambdaTest/nightwatch-selenium-sample.git
  2. A Jenkins pipeline: A new pipeline will be created on Jenkins to run the Nightwatch tests on the LambdaTest Selenium Grid. To achieve this, this project is integrated into LambdaTest.
  3. Credentials of LambdaTest Account: The credentials to your LambdaTest profile will be needed. You can easily find the Username and Access Key on the profile section of your LambdaTest Account. (After logging in, click on the rightmost avatar, a dropdown menu will appear and then click on the profile section. You will find the username and Access token there.)

Steps to achieve Integration through Environment Variables

  1. Start the Jenkins Server by traversing to the location of Jenkins folder in CMD(Command Line Prompt) and typing the command “java -jar jenkins.war”. (You can also change the port on which Jenkins is running by adding --httpPort = <port number> attribute to the previous command.)
  2. As the Jenkins server is up and running, go to http://localhost:8082/ and Login to the Jenkins Server.
  3. The Jenkins Dashboard appears; On the Topmost left side, select the New Item Icon. You will be directed to a new configuration page.
  4. Enter the Name of the pipeline (in this case, it’s “Lambdatest Integration Pipeline”), and select Pipeline from the given options. Click on OK. A new Jenkins pipeline is created.
  5. You will be directed to the configuration page for the Jenkins pipeline, Select Tab Pipeline and add the below Groovy Script in order to create three pipeline stages:
    • Providing the Environment by LambdaTest Environment Variables: By the withEnv construct you will set the environment with variables, LT_USERNAME, LT_ACCESS_KEY, LT_TUNNEL. These variables will then be used in our whole pipeline.
    • Setup Stage: In the setup stage, you will clone the git repository and download the binary file(LT_Windows.zip) required to create an ssh connection through a Tunnel. You will then unzip the zip file and Activate the tunnel by command “LT --user ${LT_USERNAME} --key ${LT_ACCESS_KEY}”.
    • Build Stage: After the activation of Tunnel, you will install the required dependencies by commands, npm install and npm install nightwatch.
    • Test Stage: In the test stage, we will run the tests with the help of Nightwatch. Here the command used is a batch command : bat 'node_modules/.bin/nightwatch -e chrome tests'. Through this command we are also providing the environment in which the Tests should be run(the environments can be chrome, ie, edge, firefox etc.. LambdaTest eases the process of testing in various environments by providing us to choose the environment as per the need.)
  6. The Groovy Script for the Pipeline to create stages is :
  7. Click on Apply and Save. This will save the pipeline script. And the pipeline is ready to build now.
  8. To run the Jenkins Pipeline, On the Left side menu click on Build Now option. You can also use the Configure option to make changes in the Pipeline Configuration, if required.
  9. As soon as you click on Build Now, You can view the four stages forming in the Stage View (shown in the above screenshot).
  10. On the left side of the Stage view, to check whether the Build was successful or not, click on the Build Number and then go to Console Output. (The Blue ball represents that the build was successful, you can view the whole logs by scrolling down in your log pane.)

Checking the Test Cases on the LambdaTest Automation Dashboard

  1. Log in to your LambdaTest account by visiting URL: https://accounts.lambdatest.com/login
  2. You will be directed to the LambdaTest Dashboard; On the Left Menu, click on the Automation option.
  3. The LambdaTest Automation Dashboard appears. Select Automation Logs Tab on it.
  4. You will find the Test run from Jenkins with proper configurations. LambdaTest eases the process of testing by providing a video log, screenshot etc. You can view the video log and see how the test is passed and weigh the intricacies of the Nightwatch test run through LambdaTest - Jenkins Integration.

Thus, this way, you can use the LambdaTest Integration with Jenkins for easeful testing. You can also create a freestyle project where after installation of the LambdaTest plugin, the environment variables, LambdaTest credentials etc., can be set manually through a user-friendly UI.

Wrapping Up!

Jenkins has a lot of potential in it. With the integration of various plugins and configuration of different platforms like LambdaTest integration with Jenkins; It provides different environments to create a build and facilitates various applications of continuous integration and continuous deployment.

However, setting up the environment variables is a crucial step in every use case provided by Jenkins. These variables maintain a lot of information required for a successful setup. These are accessed and injected in freestyle projects and pipelines to fulfil essential requirements of the build process and the test process. With Jenkins, we aim to create a robust product or software with excellent test resistance and performance. Thus, ensure that the required Jenkins environment variables are set and can be accessed wherever and whenever necessary.

Also, don't forget to leave your comments, and if you have any query or question, shoot up to the LambdaTest community and get it resolved.

Till then, Happy Testing!

Author Profile Author Profile Author Profile

Author’s Profile

Praveen Mishra

Praveen is a Computer Science Engineer by degree, and a Digital Marketer by heart who works at LambdaTest. A social media maven, who is eager to learn & share about everything new & trendy in the tech domain.

Blogs: 28



linkedintwitter

Test Your Web Or Mobile Apps On 3000+ Browsers

Signup for free