Jenkins Tutorial
Table of Contents
The system for automatic testing involves three components:
- the source code, it usually comes from a Source Control Management (SCM) system, which is either git or subversion.
- the computer where the tests are run, this is called the slave node.
- the Continuous Integration server, which is the Jenkins server.
A typical sequence of events for a build is:
- a code change is pushed by a developer to the SCM repository.
- the SCM system sends a message to the Jenkins server saying that something has changed.
- Jenkins starts running a test, this is called a build by:
- fetching the changes from the SCM repository.
- running the tests on the slave nodes
- notifying the developers of the results of the tests.
 
The goal of this tutorial is to demonstrate how to configure the different components to set up a test. We will use a Python code, available on GitHub, to define some simple tests. So the SCM system for this tutorial is git on GitHub.
First we will check that you can connect to the Jenkins server in Section 1. Then in Section 2 we will configure the authentication between the three components of the testing system—GitHub, the slave nodes and the Jenkins server—so they can communicate with each other. In Section 3 we go through the steps to configure a build.
Throughout this tutorial, the figures are scaled to fit on the current screen, if you need a larger figure, you can usually right click on it and choose Open Image in New Tab or Open Image in New Window.
1 Checking Your Internet Connection
For security reasons, the Jenkins server is only accessible when your computer is connected to the network with a wired connection on campus or when you are using the Secure Remote Access app.
You can verify that your connection is valid by going to show my IP and look at the top of the page for the line
Your Web client's IP address (from the perspective of this Web server) is:
your IP address needs to start with 128.112 for you to be able to access the Jenkins server.
2 Credentials for the Slave Node, GitHub and Jenkins
2.1 GitHub Setup
2.1.1 Clone the Tutorial Repository on GitHub
To follow this tutorial, you need an account on GitHub. You then need to fork the repository for the code used in this tutorial on your GitHub account. To do so:
- Go to the repository for the tutorial: https://github.com/PrincetonUniversity/jenkins_tutorial
- and click - Fork  
- This will create a repository on https://github.com/GitHubID/jenkins_tutorial, where you should replace GitHubIDby your GitHub ID.
2.1.2 Add buildbot-princeton as a collaborator
You need to add the GitHub user "buildbot-princeton", which is the GitHub id for Jenkins at Princeton, as a collaborator to your fork. This explains how to do it: Adding collaborators to a personal repository
It is recommended that you give buildbot-princeton push (or write) access. We will talk about why later. 
Your Collaborators and page on GitHub should look like this:
 
2.1.3 Generate the ssh public and private keys
Now we are going to give the Jenkins server access to this GitHub repository using an ssh public/private key pair.
- Create a ssh public/private key pair on any machine that you have access to. On a Linux or Mac machine you can generate those keys with the following command: - $ ssh-keygen -t rsa -b 4096 -f id_rsa_github -C "punetid@jenkins" - where you should replace - punetidwith your Princeton University netid. The command line options are:- -fspecifies the name for the ssh keys, you should pick something meaningful to you.
- -Coption is a comment so you can use what you want.
 - You will be asked for a passphrase. You will need this passphrase when you copy the key to the Jenkins server. 
- This command creates two files: - the private key: id_rsa_github
- the public key: id_rsa_github.pub
 - The private key will be copied on the Jenkins server and the public key will be copied on your GitHub account. 
- the private key: 
For more help on generating ssh keys, check the GitHub documentation.
2.1.4 Copy the public key to your GitHub account
GitHub also has some help on this subject: GitHub help on ssh deploy key.
Here is a summary:
- Connect to your GitHub account.
- Got to your repo (https://github.com/GitHubID/jenkins_tutorial).
- Click on SettingsthenDeploy keys.
- Copy the public part ( - id_rsa_github.pub) of your key. This should look like:- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDUmNmendCMuuh25MnW8eE69RCuxHYFXx8up/c+BUnTDXWDxrx6C8t6ezE40fN2oVibIEOvVBWwvsN3CdtgMsSbA4zztYj3zTpZRCJw9z/LeNh4vfNb31ALUeR3mZ3zLT+nphajVsb5CKn4qFHMK3cD39g+MWuEk/uodfy+Vq6me+S0EjvkZKyEbEKLxBwmEaNrUeO2NcYGYnZlkn6dZjMzx0nE4DthJQCumGzPFwZ+Iuj7aqfthcejkbY/C1evDTg9ZQZdJlqUZlyKOYKsRpIJ/IstbsCnFWE+ZV8VjmTCl0mqsTdWy4JmvPVcfEezs012tfmzFUjaFUMUuIf11nbEZ1+SfJtny8kSPf95Ix6swxSpcbVXiRXInxlbXhaE8UCZ3/rZzClmDngd/Z7M6UH0JAf4o+VKKZZ3H4LKk30rwoyQ+U7zn9NZIdQ4dmmc+1k0l7TY7UeneMqmtNwWiJ2B+g/dy+DVI1bC6USkl+E8F0OSbPnlZEittFNxbFrIRaq4aLuFULrpZuZ3I9DrXXXJBKG8hDWj+zZWTgZncp8LDdfE740R+1z6xeX/3e0ODlzh3RSI97LlLGvfMxWDWaWa/5Mth8APDNucjuN1f5yzslBsGtxTbpgpvCN5OjVMCrYVndP3aYKyzIM9E8U48VfE3vUP0JajMOwgmuivpinxPQ== punetid@jenkins 
- and paste on your GitHub repository. This should look like this:   
- Check the Allow write accessbox.
- Click Add key.
2.1.5 Copy the private key on your Jenkins account
Now we need to copy the private part of the key to your Jenkins account.
- Connect to https://jenkins.princeton.edu with your Princeton University netid/password. You will see the list of folders assigned to you, in this case there is one folder called - tutorial_folder, in your case it will be the folder given to you by the Jenkins administrator.  
- Click on the folder tutorial_folder
- Click on Credentialson the left-hand sidebar.
 
- Click on - Global credentials (unrestricted)  
- Click on - Add Credentials  
- Select: - Kind: SSH Username with private key
- Username: your username on GitHub.
- Private key: Enter directly. And copy paste the content of the private key fileid_rsa_github.
- Passphrase: Enter the passphrase that you used when generating the ssh key in 2.1.3.
- Description: enter something that will make it easy to select the right 
credentials later. I use jenkins_tutorial deploy.
 - The page should look like this:   - Click Ok.
 
- Kind: 
2.2 Slave Node Configuration
Now we are going to give Jenkins access to the slave node.
The name of the slave node is slave.
The Jenkins system administrator will send you a file containing an 
ssh public key named id_rsa_slave_punetid.pub that you need to copy on your 
account on slave.
You can do it with the following steps:
- copy the ssh public key on - slave- $ scp id_rsa_slave_punetid.pub punetid@slave.princeton.edu:~/. 
- connect onto the slave host - $ ssh punetid@slave.princeton.edu 
- make sure the directory - ~/.sshexists and that the permissions are correct:- [punetid@slave] $ mkdir -p ~/.ssh [punetid@slave] $ chmod 700 ~/.ssh 
- Append the public key to the file - ~/.ssh/authorized_keysand make sure the permissions are correct:- [punetid@slave] $ cat id_rsa_slave_punetid.pub >> ~/.ssh/authorized_keys [punetid@slave] $ chmod 600 ~/.ssh/authorized_keys 
- Create a directory called - jenkinsin your home directory- [punetid@slave] $ mkdir ~/jenkins 
3 Setting Up A Build in Jenkins
Now that we have set up all the necessary permissions between GitHub, Jenkins and the slave node, we are ready to configure some tests for the simple factorial code that is in your fork of the PrincetonUniversity/jenkins_tutorial repository.
When you save your configure, you will see a note pop-up like this one:
 
This is because the Jenkins configuration is saved in a Git repository itself. This way if you ever make a mistake in your configuration, and you cannot remember what you changed, you can ask the Jenkins administrator to revert to a previous configuration.
In the pop-up menu, you can either enter a comment for this commit or leave it blank. Then click on Submit comment.
3.1 Creating a Simple Build with Manual Trigger
- Go to https://jenkins.princeton.edu
- You should see the folder that was assigned to you. On the figure below, it's - tutorial_folder  
- Click on the folder.
- Click on New Item
 
- Create a new - Freestyle projectnamed- jenkins_tutorial. Click- OK.  
3.1.1 Project Identity And Build Rotation
First, to save disk space on the Jenkins server, we will only keep the build logs for 5 days with a maximum of 10 builds. You can change this to something that makes more sense to you.
- Check the box Discard Old Builds:- Set Days to keep buildsto 5.
- Set - Max # of builds to keepto 10.  
 
- Set 
- Check the box - GitHub project. In the- Project urlbox enter the url for your project. On the figure it is:- https://github.com/luet/jenkins_tutorial - because my GitHub login is - luet.
3.1.2 Slave Node
Check the box Restrict where this project can be run. In the Label Expression box enter the name of the slave that the Jenkins administrator gave you. In our case, tiger1_luet because the slave node name is tiger1 and my Princeton netid is luet.
 
3.1.3 Source Code Management (Git)
- In Source Code ManagementselectGit.
- In the - Repository URLenter- git@github.com:GitHubLogin/jenkins_tutorial.git - where you should replace - GitHubLoginwith your GitHub login, which is- luetin my case.
- In the Credentialsbox select the Credential you entered in Section 2.1.5. It appears asluet (jenkins_tutorial deploy)in the screen snapshot below.
- In Branches to build, leave*/masterfor now.
 
- At this point you have enough to test whether the repository can be cloned on the slave. To do so, click the - Build Nowbutton on the upper left hand side toolbar.  - You should see a build starting in the left-hand sidebar: 
 
The build should run for a while and when it stops, it should have a blue ball on the left of the number.
You can also ssh onto the slave node directly and you should see that the jenkins_tutorial repository was cloned in the directory jenkins in your home directory.
3.1.4 Add a test
We will now add a test. We don't specfify any Build Triggers for now, we will be testing by triggering a build manually with the BuildNow button.
- Go to - Buildand click- Add build stepand select- Execute shell  - With the - Execute shellyou are basically given a shell on the slave. The current directory for this shell is- $HOME/jenkins/folder_name/job_name.
- In the - Execute shellbox we enter bash commands to run the test that comes with the git repository in the- testsdirectory. Note that there is no space between- #!and- /bin/bash, Jenkins will fail if there is a space.- #!/bin/bash module load anaconda3 python test.py - Here we are running a Python unit test. This test uses the Python module - unittestwhich is only available in Python >= 2.7.
- Then click - Saveto save this step.  
- Test this build step by clicking Build Nowat the top of the left=hand sidebar.
- After the run is done, the build history should show your test with a blue ball next to it
 
- On the figure above the last build is - #13. Click on the build number to get more details about the build.  
- Click on - Console Outputto standard output of your run. The build consists in two steps:- cloning (the first time) or updating (subsequent times) the code.
- running the test.
 - In that case the status of the test is - Finished: SUCCESS.  
3.1.5 Add e-mail notifications
Now we will have Jenkins send you an e-mail each time a build is run.
- Go to the bottom of the page, in the section - Post-build Actions.  
- Click on the Add post-build actionbutton and selectEditable Email Notification. There is another choice,E-mail Notification, but it is less configurable thanEditable Email Notification.
 
- In the Editable Email Notificationbox:- In the - Project Recipient List, delete- $DEFAULT_RECIPIENTSand enter your e-mail address instead  - If you leave the - $DEFAULT_RECIPIENTS, Jenkins will look through the logs of the git repository and find the e-mails of all the developers.
- Select - Advanced Settings...  
 
- In the - Triggersbox, remove the default trigger, by clicking- Remove Trigger  - The - Failure - Anytrigger sends an e-mail only in case the tests fails. In this tutorial, we want to receive an e-mail even in case of the tests were successful.
- Select Add TriggerandAlways
 
- Click - Deleteunder- Developers,  
- Click Saveat the bottom of the page.
- Click Build Nowto run a build and you should receive an e-mail.
3.2 Automatically Trigger A Build When Someone Opens a Pull-Request
Using the Build Now button is useful for testing, but in production mode you want the tests to be run automatically.
We will now add a build trigger that will start a build automatically when someone opens a Pull-request toward your clone on GitHub. A great advantage of testing on a pull-request is that the changes are tested before they are committed to the git repository.
3.2.1 Changes on the Jenkins Server
In the Configure menu:
- Go to the - Source Code Managementand click the- Advancedbutton  
- In the - Refspecbox enter:- +refs/pull/*:refs/remotes/origin/pr/*. It is a regular expression that tells Jenkins to fetch the pull-requests from GitHub.  
- In the - Branches to buildsection, box- Branch Specifier, replace- */masterwith- ${sha1}. This tells Jenkins to use the variable- sha1that is sent to Jenkins by GitHub. The variable- sha1will contain the SHA1 tag of the git commit to pull. Note that at that point you cannot use the- Build Nowbutton anymore.  
- In the - Build Triggerssection:- check GitHub Pull Request Builder
- Add your GitHub ID to Admin list
- check Use github hooks for build triggering
   
- check 
- Click Saveat the bottom of the page.
3.2.2 Changes on GitHub
You need to add a Webhook to your GitHub account. A Webhook is a mechanism for GitHub to send a message to the Jenkins server when a Pull-Request has been opened.
- Go to your fork on GitHub and select - Settings  
- Select - Webhooks & services  
- Select - Add webhook  
- In the box - Payload URLenter- https://jenkins.princeton.edu/ghprbhook/ - (see Screen shot below). 
- In the Content typebox, selectapplication/json
- In the box Which events would you like to trigger this webhook?, select:- Let me select individual eventsand pick- Pull request
- Issue comment
 
 
- Click Add webhookat the bottom of the page.
 
- GitHub will send a test message when you first create the webhook. At the bottom of the webhook page you should see something like the figure below. Note the green check mark to the left.   
3.2.3 Open a Pull-Request To Test the New Settings
Now we will make a change to the code and open a Pull-request to merge the changes. We will do it directly on the GitHub web site but you could do everything on the command line if you are familiar with git. We will simply add a README file to the repository.
- Go back to the code on GitHub and click on - Add a README  
- Add something to the - README.mdand select- Create a new branch for this commit and start a pull request, then click- Propose new file  
- In the new window click, - Create pull request  
- If all goes well: - a Jenkins job should start,
- you should get an e-mail,
- the Pull-request on GitHub should look like:
   - If all the tests passed successfully, you can click - Merge pull requestto merge the Pull-Request.