doc/development/integrations/jenkins.md
This is a step by step guide on how to set up Jenkins on your local machine and connect to it from your GitLab instance. GitLab triggers webhooks on Jenkins, and Jenkins connects to GitLab using the API. By running both applications on the same machine, we can make sure they are able to access each other.
For configuring an existing Jenkins integration, read Jenkins CI service.
Install Jenkins and start the service using Homebrew.
brew install jenkins
brew services start jenkins
GitLab does not allow requests to localhost or the local network by default. When running Jenkins on your local machine, you need to enable local access.
Sign in to your GitLab instance as an administrator.
In the upper-right corner, select Admin.
Select Settings > Network.
Expand Outbound requests, and select the following checkboxes:
For more details about GitLab webhooks, see Webhooks and insecure internal web services.
Jenkins uses the GitLab API and needs an access token.
To configure your GitLab API connection in Jenkins, read Configure the Jenkins server.
To set up the Jenkins project you intend to run your build on, read Configure the Jenkins project.
You can configure your integration between Jenkins and GitLab:
Make a change in your repository and open an MR. In your Jenkins project it should have triggered a new build and on your MR, there should be a widget saying Pipeline #NUMBER passed. It should also include a link to your Jenkins build.