debian-mirror-gitlab/doc/development/integrations/jenkins.md

63 lines
2.6 KiB
Markdown
Raw Normal View History

2021-01-29 00:20:46 +05:30
---
stage: Create
group: Ecosystem
2021-02-22 17:27:13 +05:30
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#assignments
2021-01-29 00:20:46 +05:30
---
2020-04-22 19:07:51 +05:30
# How to run Jenkins in development environment (on macOS) **(STARTER)**
2020-06-23 00:09:42 +05:30
This is a step by step guide on how to set up [Jenkins](https://www.jenkins.io/) 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.
2020-04-22 19:07:51 +05:30
2021-04-17 20:07:23 +05:30
For configuring an existing Jenkins integration, read [Jenkins CI service](../../integration/jenkins.md).
2020-04-22 19:07:51 +05:30
## Install Jenkins
Install Jenkins and start the service using Homebrew.
```shell
brew install jenkins
brew services start jenkins
```
## Configure GitLab
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.
2021-03-11 19:13:27 +05:30
1. Log into your GitLab instance as an administrator.
2020-10-24 23:57:45 +05:30
1. Go to **Admin Area > Settings > Network**.
2020-04-22 19:07:51 +05:30
1. Expand **Outbound requests** and check the following checkboxes:
- **Allow requests to the local network from web hooks and services**
- **Allow requests to the local network from system hooks**
For more details about GitLab webhooks, see [Webhooks and insecure internal web services](../../security/webhooks.md).
Jenkins uses the GitLab API and needs an access token.
2021-03-11 19:13:27 +05:30
1. Sign in to your GitLab instance.
2020-04-22 19:07:51 +05:30
1. Click on your profile picture, then click **Settings**.
1. Click **Access Tokens**.
1. Create a new Access Token with the **API** scope enabled. Note the value of the token.
## Configure Jenkins
2021-04-17 20:07:23 +05:30
To configure your GitLab API connection in Jenkins, read
[Configure the Jenkins server](../../integration/jenkins.md#configure-the-jenkins-server).
2020-04-22 19:07:51 +05:30
## Configure Jenkins Project
2021-04-17 20:07:23 +05:30
To set up the Jenkins project you intend to run your build on, read
[Configure the Jenkins project](../../integration/jenkins.md#configure-the-jenkins-project).
2020-04-22 19:07:51 +05:30
## Configure your GitLab project
2021-04-17 20:07:23 +05:30
You can configure your integration between Jenkins and GitLab:
2020-04-22 19:07:51 +05:30
2021-04-17 20:07:23 +05:30
- With the [recommended approach for Jenkins integration](../../integration/jenkins.md#recommended-jenkins-integration).
- [Using a webhook](../../integration/jenkins.md#webhook-integration).
2020-04-22 19:07:51 +05:30
## Test your setup
2021-02-22 17:27:13 +05:30
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.