1 Answer

0 votes
by
GitHub Setup for Jenkins

Jenkins is a CI (Continuous Integration) server and this means that it needs to check out source code from a source code repository and build code. Jenkins has outstanding support for various source code management systems like Subversion, CVS etc.

Github is the fast becoming one of the most popular source code management systems. It is a web based repository of code which plays a major role in DevOps. GitHub provides a common platform for many developers working on the same code or project to upload and retrieve updated code, thereby facilitating continuous integration. Jenkins works with Git through the Git plugin.

Connecting a GitHub private repository to a private instance of Jenkins can be tricky.

To do the GitHub setup, make sure that internet connectivity is present in the machine where Jenkins is installed.

In the Home screen of the Jenkins (Jenkins Dashboard), click on the Manage Jenkins option on the left hand side of the screen.

GitHub Setup for Jenkins

Now, click on the Manage Plugins option.

GitHub Setup for Jenkins

In the next page, click on the "Available tab".

GitHub Setup for Jenkins

The "Available" tab gives a list of plugins which are available for downloading. In the Filter tab type, type the "Git Plugin".

Select the Git Plugin.

Click on the "install without restart". The plugin will take some time to finish downloading depending on your internet connection, and will be installed automatically.

You can also click on "Download now and install after restart" button in which the git plugin is installed after restart.

If you already have the Git plugin installed then go to "Installed" tab and in filter option type Git plugin.

GitHub Setup for Jenkins

Once all the installations are completed, restart Jenkins by giving the following command in the browser. http://localhost:8080/jenkins/restart

After Jenkins is restarted, Git will available as an option while configuring jobs.

Integrating Jenkins with GitHub

Let's see the process of integrating GitHub into Jenkins in a windows system.

First create a new job in Jenkins, open the Jenkins Dashboard and click on "create new jobs".

GitHub Setup for Jenkins

Now enter the item name and select the job type. For example, item name is javaTpoint" and job type is "Freestyle project".

Click on OK.

GitHub Setup for Jenkins

Once you click OK, the page will be redirected to its project configuration. Enter the project information:

GitHub Setup for Jenkins

Now, under the "Source Code Management" you will see the Git option, if your Git plugin has been installed in Jenkins:

GitHub Setup for Jenkins

Note: if the Git option does not appear, try to reinstall the plugins, followed by a restart into your Jenkins dashboard.

Enter the Git repository URL on the "Repository URL" option to pull the code from GitHub.

GitHub Setup for Jenkins

You might get an error when first time you enter the repository URL. For example:

GitHub Setup for Jenkins

This happens if you don't have Git installed in your system. To install the Git in your system, download the appropriate Git setup according to your operating system. I am installing for windows. Once the download is completed, install the Git.

GitHub Setup for Jenkins

Complete the following instructions to install the Git:

GitHub Setup for Jenkins

You can execute Git repositories in your Jenkins once Git has been installed on your system. To check if the Git has been installed on your system, open the command prompt, type Git and press Enter.

GitHub Setup for Jenkins

In the above screen, you observe that syntax and different options come up for Git. This means that Git has been installed in your machine.

Now try to add the Git URL into Jenkins.

Git is now successfully configured on your system.

Related questions

0 votes
asked Sep 8, 2019 in Jenkins by ivor2019
0 votes
asked Sep 8, 2019 in Jenkins by ivor2019
...