cover-img

How to build a CI/CD pipeline with Jenkins (explained with a project)

In this blog, I am going to build a CI/CD pipeline using Jenkins and explain to you how Jenkins is useful with the help of a project

18 November, 2022

12

12

1

Introduction

Hey everyone I am Hasnain Makada currently working as a Developer Advocate at Napptive where I explore the platform in-depth and also teach about DevOps and Flutter to the community as well via my blogs on Hashnode & Showwcase.

In this blog, I am going to teach you how to build a CI/CD pipeline using Jenkins and the best part of this blog is, I am going to build the pipeline and use a project with it to explain how everything works practically.

What is Jenkins?

Jenkins is an open-source automation server. It helps to automate the parts of software development related to building, testing, and deploying, facilitating continuous integration and continuous delivery. With Jenkins, you can easily automate various tasks in your software such as testing the code periodically to detect any errors, building the app after testing, and so on...

With Jenkins, you mainly have to build a pipeline for your entire project and inside the pipeline, you can define various stages the CI/CD will go on. Jenkins is free software and is completely open source for everyone to contribute.

Jenkins provides various benefits such as,

  • As it is open source, it is easy to install and has great documentation and it does not have any additional components to install.
  • Jenkins also provides a rich plugin ecosystem which makes it easy to automate it across various platforms.
  • Most of the integration work is automated. Hence fewer integration issues. This saves both time and money over the lifespan of a project.

Let's built the actual pipeline

Now that we've discussed Jenkins, let's get started building out the actual pipeline and see how it is useful in building our projects.

Before starting out make sure that you've installed Jenkins properly in your system, If you're new to Jenkins and don't know how to install it, check out the official documentation by Jenkins.

Now go to your dashboard, and click on New Item image.png

Then enter the name of your item and select pipeline from the above list of projects. As we are creating a pipeline we are selecting that, otherwise, we can create a freestyle project also. But freestyle projects have their own disadvantages which you can check out here.

Name the pipeline as CI-CD pipeline GitHub and create it.

Moving on to the next, Jenkins will ask you to configure your project and will ask you several parameters such as a description, whether it is a GitHub project, etc... It will also ask you for triggers to build the project periodically and so on...

Here I am selecting to build the project periodically because that's the job of CI/CD, right?

Click on the Build Periodically and paste this inside the box H/5 * * * *. This will automatically build the project every 5 minutes to ensure that the pipeline is up-to-date.

image.png

After then, go to the pipeline section and select pipeline from SCM. Select GIT as the SCM and enter the URL of your GitHub Repository.

image.png

Now click on save and your pipeline is created successfully.

Now that our pipeline is successfully integrated with our project, we are going to create a sample hello world project in node js and ensure that our pipeline gets built every 5 minutes for us to perform certain node commands.

Create a Jenkinsfile inside the root folder of your project and paste this code inside it.


Remember: To run Jenkins on node js projects, make sure you have the Node JS plugin installed on your machine, If you don't know how, check out here

Add the file, commit and push the changes to the main repo.

Now that we've set the build to periodically, it will get started every 5 minutes, but we can do that by clicking on the Build Now button on the side panel.

image.png

Head over to the main dashboard and you can see that we've successfully run our first pipeline in our repository

image.png

Similarly define more steps and create more stages and the pipeline will build every 5 minutes. I've used the declarative approach in defining the pipeline of Jenkins, but you can use the scripting syntax too. For more info about pipeline syntax, check out here

Wrapping up!!!

Alright, everyone, this was just the demo of Jenkins on how to create a pipeline and integrate it with GitHub, So if you wanna learn more about Jenkins, Check out their official documentation.

I hope that by now you have got the Idea of what is CI/CD and how Jenkins implements the concept of CI/CD by providing such simplicity. If you have any further doubts related to DevOps and Flutter, reach out to me on Twitter and Showwcase.

Till then Happy Coding 😀😀😀

devops

jenkins

showwcaseevents

develevate

howto

12

12

1

devops

jenkins

showwcaseevents

develevate

howto

Hasnain Makada
Elite @Showwcase | Prev: CCO @ShowwcaseHQ | Building out OSWH 👨‍💻 | MLSA - β | DevOps and Flutter 💙 | Blogger at Hashnode and Showwcase 📑

More Articles

Showwcase is a professional tech network with over 0 users from over 150 countries. We assist tech professionals in showcasing their unique skills through dedicated profiles and connect them with top global companies for career opportunities.

© Copyright 2024. Showcase Creators Inc. All rights reserved.