How To Use Shared Libraries In A Jenkins Pipeline?

Praveen Mishra

Posted On: March 2, 2021

view count87699 Views

Read time11 Min Read

As Agile methodology picks pace, tools that enable faster time to deliver software got more prominence. Jenkins, arguably the widely used DevOps automation tool, helps companies achieve the full benefits of Agile methodology. For most developers & testers, Jenkins is not something new. It actually became part and parcel of their job description. In this article, let’s discuss how to use Jenkins effectively by using Jenkins Shared Library.

For beginners on Jenkins, I would recommend reading our article Best Jenkins Pipeline Tutorial For Beginners before continuing to read this Jenkins pipeline shared library tutorial. If you are preparing for an interview you can learn more through Jenkins Interview Questions.

Jenkinsfile

In the world of Jenkins, a pipeline is the smallest unit every Jenkins user interacts with. Jenkins pipeline can be defined either by using a Jenkinsfile or GUI (Graphical user interface). We recommend Jenkinsfile over GUI, as GUI may prove ineffective for complex requirements.

Jenkinsfile is just a text file where we write pipeline code to define the Jenkins pipeline. It can be checked into source control like Git along with our project source code. In most cases, every application will have its own Jenkinsfile to build, test & deploy

There are two ways of writing a Jenkinsfile – One is called Scripted Pipeline, where syntax for pipeline is strictly Groovy. Another is a relatively new way of writing Jenkinsfile called Declarative Pipelines.

For starters,

  • If Jenkinsfile starts with the word node, then it’s a Scripted pipeline.
  • If Jenkinsfile starts with the word pipeline, then it’s a Declarative pipeline.

We would recommend using Declarative Pipeline as it offers more advantages over Scripted Pipeline.

Jenkins Shared Library

In today’s Microservices world, large monolith applications are broken down into small applications & deployed separately. Interestingly, most of these applications have the same steps to build, test & deploy the application. So instead of repeating those steps for every application, we can actually create a shared library, which can be used across applications.

Why Use Jenkins Shared Library?

Let’s say we have five different Spring Boot applications in our Microservice architecture. All of them need to be built using Maven, run Unit & Integration tests to ensure the integrity of code, packed as a JAR/WAR file & pushed to the artifactory.

Typically, all five applications need their own Jenkinsfile, but the content of the Jenkinsfiles is going to be mostly the same. Jenkins Shared Library avoids this repetition of pipeline code by creating a shared library.

In brief, here are steps to create & use the Jenkins shared library:

  • Create a separate git repo for the Jenkins pipeline library & push the shared library code to that repo.
  • Integrate the shared library repo in Jenkins under the Manage Jenkins section.
  • Create Jenkinsfile in the project. In that Jenkinsfile, Import & use the shared library.

Creating Jenkins Shared Library

Jenkins Shared Libraries are usually pushed into a separate Git repository & checked out by Jenkins job during the job run.

Steps to create Jenkins shared library:

Step 1: Create vars folder

Create a separate project directory. Inside the project directory, create a directory called vars, which will host the shared library’s source code (usually in files with extension .groovy)

Step 2: Create Groovy file

Create a file called welcomeJob.groovy inside the vars folder. (camel casing is mandatory for file names). The filename welcomeJob will be used later by Jenkinsfile to access this Jenkins pipeline library.

Step 3: Create call() function inside Groovy file

When a shared library is referred from the Jenkins job, Jenkins, by default, will invoke the call() function within our Groovy file. Consider the call() function like the main() method in Java. We can also specify parameters for the call() function if we want to.

In the above example, the name is the parameter. Default value ‘User’ will be assigned to the name in case the parameter is not passed by Jenkinsfile.

Now commit & push the contents of the vars folder to a remote git repository.

Configure Shared Library in Jenkins

Now it’s time to configure the Shared Library in Jenkins.

Steps to configure Jenkins pipeline library:

Step 1: Open Jenkins in your browser. (if local, http://localhost:8080/)

Step 2: Click on manage jenkins on the left side menu.

Step 3: Click on configure system. Scroll down until you find the Global Pipeline Libraries section.

Step 4: Under the Library section, configure values as below.

  • Name (remember, we will refer to this shared library from Jenkinsfile using this name).
  • Default version (branch name of our Shared Library git repo).
  • Under the Retrieval method, choose Modern SCM.
  • Under Source Code Management, choose Git.
    • Enter your Pipeline Shared Libraries repo URL under Project Repository
    • Configure credentials if your repo requires credentials to checkout code

Step 5: Click on the save button.

Source Code Management

Sample configuration for Global Pipeline Libraries

Now that our shared library is configured in Jenkins, let’s create a new Jenkins job to utilize this Jenkins pipeline library.

Referring Jenkins Shared Library from Pipeline

Now, let’s refer to the Jenkins shared library from the pipeline.

Steps to refer Jenkins pipeline library:

Step 1: In Jenkins, click on New Item on the left side menu, enter Jenkins job name & choose the pipeline as style & click on the OK button.

Jenkins pipeline library

Step 2: Inside the job, scroll down to the pipeline section. Here we need our Jenkinsfile, which refers to the Shared Library. Loading Jenkinsfile into Jenkins job can be done via two approaches.

Approach 1 : Jenkinsfile – Manual approach (Not preferred for production)

  1. Under the pipeline section, you can see a script textbox where we can manually copy, paste the contents of our Jenkinsfile.
  2. Note: _ (underscore) is a must after the @Library annotation.

    @Library will import the shared library to our Jenkins job. (Remember first-shared-lib is the name we gave while configuring shared libraries in Manage Jenkins. Refer to the previous section of this article).

    welcomeJob will invoke the call() function in welcomeJob.groovy created under vars folder. The ‘lambdatest’ string will be sent as a parameter to the call() function.

  3. Click on the save button.

Approach 2 : Jenkinsfile – Refer from Git repository (Preferred Approach)

Instead of manually copy-pasting Jenkinsfile content, we can refer to Jenkinsfile committed in a Git repo.

Step 1: In Jenkins job, under the pipeline section, choose pipeline script from SCM for Definition. Configure Git repo URL & credentials in case the repo needs authentication for code checkout.

pipeline script from SCM

Step 2: Click on the Save button.

We recommend Approach 2 to load Jenkinsfile into the Jenkins job.

Step 3: Click on Build Now button on the left side menu to trigger the build.

Step 4: Once the build is complete, check the logs by clicking on the Console Output from the left side menu.

Console Output

You should see the Welcome, lambdatest message in the Console Output.

So we have successfully created & used a Jenkins shared library that prints the Welcome message. But what is the real use of this Jenkins pipeline library feature? Surely it’s not created just to print Welcome messages.

Jenkins Shared Library with Java/Spring Boot Application

Let’s take the example we discussed earlier in this article – Microservices architecture with five Spring Boot applications, with each of them having its Jenkinsfile.

Here is the sample Jenkinsfile to build, test & pack a Spring Boot application:

In brief, the above pipeline code will first load tools like Java & Maven, then checkout code from Git repo, clean up the workspace, then run the test case & finally pack the application as a JAR.

If you notice, other than the Git repo URL, the rest of the steps are applicable for any Spring Boot application. Instead of creating five different Jenkinsfiles, let’s create one Jenkins pipeline library & share it across all Spring Boot applications.

Moving Common Pipeline steps to Jenkins Shared Library

Let’s create a new shared library called jenkinsForJava by creating jenkinsForJava.groovy under the vars directory.

We moved our pipeline logic to the call() method in jenkinsForJava.groovy. Instead of hard coding the repoUrl, we made it dynamic by accepting the URL from the call() function’s parameter.

Now commit & push the vars/jenkinsForJava.groovy file.

Update Jenkinsfile in Spring Boot Application to use Shared Library

Let’s update the Jenkinsfile present in the root directory of the Spring Boot project with the following content:

As the call() function in jenkinsForJava.groovy requires the Git repo URL, we passed it as a parameter here.

Note: By referring to jenkinsForJava shared library, Jenkinsfile in all our Spring Boot applications got shortened to just two lines – one for @Library import & the other for calling jenkinsForJava Shared Library.

Now commit & push the changes in Jenkinsfile to the remote repo.

Create a new Job for Spring Boot Application by following steps mentioned in Approach 2 – Jenkinsfile – Refer from Git repository (Preferred Approach) section.

Refer to the below screenshot for the final state of the job

Run the job by clicking on Build Now from the left side menu after saving the job changes. You can see the build running in multiple stages, one after the other in the Stage View.

Accessing LambdaTest from Jenkins Shared Library

Let’s consider the following maven project, which contains Selenium Test cases to test the Sample To-Do App.

src/test/java/com/lambdatest/LambdaTest.java

We want to run this test in LambdaTest’s cloud. Hence, we configured RemoteWebDriver with URL:

Note: Sign Up on the https://www.lambdatest.com/ to get your username & accesskey.

Running Test in LambdaTest Cloud from Local

To execute the test in LambdaTest Cloud from your local, use the following command:

> mvn -Dusername=<USERNAME> -DaccessKey=<ACCESSKEY> test

Running Test in LambdaTest Cloud from Jenkins

You need to create LambdaTest Credentials in Jenkins Server:

  1. Open Jenkins URL (http://localhost:8080 if local) & click on manage jenkins on the left side menu.
  2. Click on Manage Credentials.
  3. Enter the Global credentials section & click on Add Credentials.
  4. Configure Username & Password with username & accessKey taken from LambdaTest site, respectively. Add credentials should look like something below:

Create JenkinsSharedLibrary to run test case on LambdaTest Cloud

  1. Create jenkinsLambdaTest.groovy under vars folder
  2. We used environment block in pipeline code to load the credentials we created under the Manage Credentials section.
  3. The entire credential is loaded into the LAMBDA_TEST_CRED variable.

    _USR is appended with LAMBDA_TEST_CRED to access username & _PSW is appended with LAMBDA_TEST_CRED to access password (accessKey for LambdaTest portal).

  4. So our final mvn test command looks like below:

Create Jenkinsfile to use Shared Jenkins Library

  1. Create Jenkinsfile in source code repo with the following content
  2. Now create a new job in Jenkins with pipeline as Job type & configure the pipeline section to refer to the Github repo.
  3. Click on the Save button & run the job by hitting Build now link from the left side menu. You should see test progress in the Jenkins Stage view.
  4. You should also see the test report in LambdaTest cloud.
  5. LambdaTest Dashboard Full

Wrapping Up

To summarize, in this Jenkins tutorial, we have discussed what is Jenkins shared library, when & how we can use it. Creating Jenkins jobs using GUI is the right place to start learning Jenkins. But it’s just the baby steps. We should not rely on GUI to create our project-related work instead, we should use Jenkinsfile to create our jobs. But it’s also important to learn how to use Jenkinsfile efficiently. Jenkins shared Library is just the first step in that direction.

I hope you found this article useful. Please let us know your feedback in the comment section below.

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