How to set up Build jobs in Jenkins

Last updated on May 28 2022
Uma Kulkarni

Table of Contents

How to set up Build jobs in Jenkins

Jenkins – Setup Build Jobs

For this exercise, we will create a job in Jenkins which picks up a simple HelloWorld application, builds and runs the java program.

Step 1 − Go to the Jenkins dashboard and Click on New Item

How to set up Build jobs in Jenkins
How to set up Build jobs in Jenkins

Step 2 − Within the next screen, enter the Item name, in this case we have named it Helloworld. Choose the ‘Freestyle project option’

How to set up Build jobs in Jenkins
How to set up Build jobs in Jenkins

Step 3 − The subsequent screen will come up in which you can specify the details of the job.

How to set up Build jobs in Jenkins
How to set up Build jobs in Jenkins

Step 4 − We need to specify the location of files which got to be built. In this example, we will assume that a local git repository(E:\Program) has been setup which contains a ‘HelloWorld.java’ file. Hence scroll down and click on the Git option and enter the URL of the local git repository.

Note − If you repository if hosted on Github, you can also enter the url of that repository here. In addition to this, you would need to click on the Add button for the credentials to add a user name and password to the github repository so that the code can be picked up from the remote repository.

How to set up Build jobs in Jenkins
How to set up Build jobs in Jenkins

Step 5 − Now go to the Build section and click on Add build step → Execute Windows batch command

How to set up Build jobs in Jenkins

Step 6 − Within the command window, enter the subsequent commands and then click on the Save button.
Javac HelloWorld.java
Java HelloWorld

How to set up Build jobs in Jenkins
How to set up Build jobs in Jenkins

Step 7 − Once saved, you can click on the Build Now option to see if you’ve successfully defined the job.

How to set up Build jobs in Jenkins
How to set up Build jobs in Jenkins

Step 8 − Once the build is scheduled, it will run. The subsequent Build history section shows that a build is in progress.

How to set up Build jobs in Jenkins
How to set up Build jobs in Jenkins

Step 9 − Once the build is completed, a status of the build will show if the build was successful or not. In our case, the subsequent build has been executed successfully. Click on the #1 within the Build history to bring up the details of the build.

How to set up Build jobs in Jenkins
How to set up Build jobs in Jenkins

Step 10 − Click on the Console Output link to see the details of the build

How to set up Build jobs in Jenkins

How to set up Build jobs in Jenkins
How to set up Build jobs in Jenkins

Apart from the steps shown above there are just so many ways to create a build job, the options available are many, which what makes Jenkins such a fantastic continuous deployment tool.

So, this brings us to the end of blog. This Tecklearn ‘How to set up Build jobs in Jenkins’ blog helps you with commonly asked questions if you are looking out for a job in DevOps. If you wish to learn Jenkins and build a career in DevOps domain, then check out our interactive, Continuous Integration with Jenkins Training, that comes with 24*7 support to guide you throughout your learning period. Please find the link for course details:

Continuous Integration with Jenkins

Continuous Integration with Jenkins Training

About the Course

Tecklearn has specially designed this Continuous Integration with Jenkins Training Course to advance your skills for a successful career in this domain. This course helps you learn server automation, continuous integration, build and configuration tools, Jenkins master-slave architecture, different types of plugins, implementing automated testing and more through hands-on projects and exercises. Upon completion of this online training, you will hold a solid understanding and hands-on experience with Jenkins.

Why Should you take Continuous Integration with Jenkins Training?

• Average salary of Jenkins Professional is $110k (Indeed.com Salary Data)
• Jenkins is an open-source automation server which enables developers around the world to reliably build, test, and deploy their software.

What you will Learn in this Course?

Introduction to DevOps

• What is Software Development
• Software Development Life Cycle
• Why DevOps?
• What is DevOps?
• DevOps Lifecycle
• DevOps Tools
• Benefits of DevOps
• How DevOps is related to Agile Delivery
• DevOps Implementation

Continuous Integration with Jenkins

• Introduction to Continuous Integration and Jenkins
• Jenkins Management
• Jenkins Master Slave Architecture
• Tools Required for CI
• Understanding CI/CD Pipelines
• Creating an end-to-end automated CI/CD Pipeline
• Jenkins Versions

0 responses on "How to set up Build jobs in Jenkins"

Leave a Message

Your email address will not be published. Required fields are marked *