Skip to content

dkaushik94/Gitlab-Jenkins

Repository files navigation

GitLab Setup

Installing GitLab using the docker image

The setup requires docker. Find information to install docker here

Run the following command to install gitlab. Once installed, we can see gitlab container running. You can find this info by running the command docker ps -a

sudo docker run --detach \
--hostname gitlab.example.com \
--publish 443:443 --publish 80:80 --publish 22:22 \
--name gitlab \
--restart always \
gitlab/gitlab-ce:latest

gitlab_install

Now go to https://localhost:80/ to find gitlab up and running. If its not available yet, wait for few minutes till you can see gitlab up and healty. gitlab_running

Setup a new password and this will be the password for the user root which is by default an admin user. You can create more users as required. Once the password is setup, you can login to gitlab as shown below.

gitlab_admin_pwd_setup

gitlab_login

Now navigate to user's settings.

user_settings

user_settings_view

Navigate to Access Tokens to proceed to generate an access token. Give it a name and expiry date.

generate_ptoken

Once the token is generated, keep it in a secure place. We'll use this token to auto-populate the projects in gitlab server.

ptoken_done

We'll now run fetch_repo.py to pull projects of a specified language from github and push them to gitlab.

python3 fetch_repos.py [github_username] [github_password]

Running this command with valid github credentials will then prompt to provide the personal access token which we obtained earlier. Upon entering the token, projects are set up in gitlab.

repo_fetch

We can now check gitlab whether all the repos have been set up. We'll setup jenkins now.

repo_setup_gitlab

Jenkins - Setup

Install Jenkins

sudo docker pull jenkins
sudo docker run -p 8080:8080 --name=jenkins-master jenkins

Once the jenkins container is running, we need to do a one time setup. As you can see in the terminal, copy the password printed or alternatively the password is always available at : /var/jenkins_home/secrets/initialAdminPassword

terminal_jenkins_install

For this, first login into the container by running the command,

sudo docker exec -i -t jenkins-master(name_of_the_image) /bin/bash

Then navigate to the above path and copy the initialAdminPassword to the clipboard

• Now goto http://localhost:8080/ to find the jenkins up and running as in Fig 1.2 jenkins_initial_admin_pwd

Now Paste the initialAdminPassword in the clipboard in the jenkins webpage as in Fig 1.3

Click continue. Now jenkins gives options for a custom/suggested installation as in Fig 1.4. We select suggested installation. customize_jenkins

This will install the standard components as in Fig 1.5

jenkins_standard_installation

Once the installation is done, jenkins brings you to create first user. Create an user as shown in Fig 1.6

jenkins_first_user_creation

Once the user is created, click complete and jenkins in now ready to use! Fig 1.7 jenkins_user_setup_done

A fresh view of jenkins should look like Fig 1.8

jenkins_running_done

We now need to setup plugins in jenkins. Run the install_plugins script - python3 install_plugins.py
If the output is True, run the command docker restart jenkins-master to restart jenkins

plugin_install

Now we need to configure the gitlab plugin.

Go to Manage Jenkins > Configure System. Here gitlab section is not configured and should look like this one below

gitlab_config

We need to give some details:
• Connection name : A name for gitlab connection which we'll later refer in each of the job created as well as job DSL. This connection is global for jenkins. We'll give gitlab as the name.

• Gitlab host url: This is the url of the gitlab container running in the system. We enter http://172.17.0.2:80/

• Credentials : We don't have any gitlab credentials setup as of now. We'll create a new one as below. Click on the Add button to setup a new credential. Enter the gitlab personal access token generated before. Jenkins will use this credential for various purposes like fetching the repos for jobs

jenkins_api_credential

Once this is setup, click on test connection. This should return success as shown below.

Uncheck Enable authentication for project Endpoint. We'll disable authentication so that webhook works without a token.

jenkins_con_success

If you are getting any error, check the url of gitlab. It should not be localhost. Since we are running gitlab and jenkins through docker, jenkins and gitlab are running in the LAN of docker. Jenkins needs to refer to gitlab within that network. So, to get the address of gitlab, in bash of gitlab, find the url at /etc/hosts file. Enter that url here.

Job Creation

We need to create jobs for each of the repos setup in gitlab. For this we'll use job DSL plugin to do it. Job DSL is written in groovy to fetch all the projects in gitlab and setup a job for each of the repo setup in gitlab. Below is the code for job DSL

Note: We are using the IP of jenkins and the private_token is the Personal Access Token obtained from Gitlab earlier. The token will be different for you. Replace the token in create_master_job.py before running the script. If the IP is also different, replace that too.

// This is the Private Access token obtained in GitLab. Please replace this with the one you obtained in create_master_job.py. 
String private_token = "DjotJ94w7GRsRdU6eDWt"
// If the address of jenkins is different from this, please replace that too.
String ip = "http://172.17.0.3:80/"
        // We need to fetch URLs of all the repos in order to create a job for each of them
		def jdata = new groovy.json.JsonSlurper().parseText(new URL("http://172.17.0.3:80/api/v3/projects?private_token="+private_token).text)
		jdata.each {
			String repo_url = it.ssh_url_to_repo
          	repo_url = repo_url.replace("git@gitlab.example.com:",ip)
            String proj =  repo_url.substring(repo_url.lastIndexOf('/') + 1);
			String project_name =  proj[0..-5]
            job(project_name) {
                // Basic details of the job
                description('A job for the project: ' + project_name)
                displayName(project_name)

                // SCM details of the repo
                scm {
                    git {
                    branch('master')
                    remote { 
                        url(repo_url)
                        credentials('gitlab-root-user')
                    }
                    }
                }

                // Build steps
                steps {
                    gradle('check')
                    gradle {
                        tasks('clean')
                        tasks('build')
                        switches('--stacktrace')
                        switches('--debug')
                    }
                    
                }
                
                // Setting up Jacoco Code coverage
                publishers {
                    jacocoCodeCoverage {
                        execPattern '**/**.exec'
                        classPattern '**/classes'
                        sourcePattern '**/src/main/java'
                        exclusionPattern ''
                        inclusionPattern ''
                    }
                
                }
                
                // Setting up triggers for Gitlab
                triggers {
                        gitlabPush {
                            buildOnMergeRequestEvents(true)
                            buildOnPushEvents(true)
                        }
                    }
  
                authenticationToken('auhgtbereb675nksnwewrhbbe==')
  
            }
	}

We use this code as part of the script in a master job xml. We again use python jenkins to create a master job and then build the created job. This job will inturn create a job for each of the repo in gitlab. It is important to verify the url and replace the private_token with the one we got in gitlab.

We need to now run the create_master_job script which will accomplish all of this. Open terminal and run the command python3 create_master_job.py

This has now created a job for each of the repo present in the gitlab as shown below

jobs_created

Webhooks

Once all the jobs are created in the jenkins, we need to create webhooks. For this we'll run create_webhooks.py which will look at all the jobs created and add webhook to each of the repo in gitlab using python gitlab. Run the command python3 create_webhooks.py. Then head to gitlab to see webhooks created for each project as shown below.

You can naviagate to Integrations part of any of the repo to find the hook created.

navigate_to_hook

In the integrations part, once you scroll down, you can see the hook. Click on test and you should see a success message on top. As you can see, the url in the the webhook is the project url of jenkins job.

hook_created

hook_success

Now any push in the repo will automatically trigger a build in jenkins. Lets try that out!

Lets edit the README.md file and push the changes to see if its triggering a build.

readme_edit

Once the changes are pushed, we head to jenkins job for the same project MPAndroidChart and we can see builds have been triggered. On the left bottom corner, we can see builds and a message indicating Started ​by ​GitLab ​push ​by ​Administrator

jenkins_build_trigger

Code Coverage

If the gradlew configuration and build.gradle is correct, builds should work fine and code coverage reports should be generated as below.

jacoco_0

jacoco_1

jacoco_2

If a project does not build successfully, we have a repo for which Jacoco works very well. You can find that repo here

Understand

We use understand to generate the reports for the code analysis. The script understand.py interactively asks for the following parameters

  • Path to the folder containing understand tool
  • Path to the repo to be analyzed
  • path for the results to be stored
  • Name of understand project
python3 understand.py

class_metrics file_metrics prog_complex proj_metrics

Repository metadata analytics

Running the routine

Run the following command to initiate the script. This script is independent of directory due to the fact that its talking to the GITHUB API directly.

python3 git_analytics.py <your_github_username> <your_github_password>

This will then ask for a a language for which you want to see the analytics for. You may input any language of your choice, but for this excercise input the exact same language as you did to fetch the repositories in 'fetch_repos.py'.

After you input the argument, the script will start talking to the API and loop over 15 (predifened range for repos in the script) repositories and analyse for each of the last 4 commits, which files were changed the most. This is indicative of more bugs arising in these file as larger changes tend to be more prone to failed testing.

It will output something like:

Output

It will also create a file named "analytics.md", which is the output file generated in markdown and will contain the output for all 15 repositories.

Note: You may delete the analytics.md file as its a previously generated file and run your script fresh to generated a new file.

Tests

1. Fetching repos

fetch_repo_test.py runs the fetch_repo.py and checks whether the no of repos set to import from github is indeed pushed to gitlab

2. Plugin Installation

plugin_install_test.py installs the plugins by running the install_plugins.py and fetches all plugins installed in jenkins to see if the plugins installed by the script was indeed installed.

3. Jenkins Job creation

jenkins_job_test.py runs the create_master_job.py to create jobs for each of the repo present in gitlab. Then checks if no of jobs created are equal to the no of repos present.

4. Webhook creation

Now once webhooks are setup, we push a sample text file to one of the repo and then check if there was an increment in the build number for the corresponding jenkins job.

Limitations of the Project

  • Gradle : Gradle configurations of projects can be very different and build often fails. It is very difficult to analyze each repo and then make changes to the job created in the Job DSL script. If the project is built using maven or sbt, again its very difficult to setup the build options in Job DSL for all possible build configurations sepcified in the project repositories.
  • Due to the programmatic creatino of webhooks, we were not able to put authentication of webhooks and they were created without the token. This can be overcome by creating the webhooks manually.
  • We are using python-jenkins package. While we can do almost all jenkins tasks with the python jenkins, some very specific things can't be done. For example, we needed to configure gitlab plugin in system configuration in jenkins. We couldn't do it with python-jenkins or jenkins-cli. The API support is not there for all possible plugin configuration. The only possible options are to use automation tools like selenium or to do it manually.