2019-05-30 02:23:46 -04:00
|
|
|
---
|
2019-07-03 07:06:52 -04:00
|
|
|
type: reference, index
|
|
|
|
last_update: 2019-07-03
|
2019-05-30 02:23:46 -04:00
|
|
|
---
|
|
|
|
|
2019-07-03 07:06:52 -04:00
|
|
|
# Pipelines for Merge Requests
|
2018-12-07 00:50:54 -05:00
|
|
|
|
2019-09-18 10:02:45 -04:00
|
|
|
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/issues/15310) in GitLab 11.6.
|
2018-12-07 00:50:54 -05:00
|
|
|
|
2019-04-05 06:52:24 -04:00
|
|
|
Usually, when you create a new merge request, a pipeline runs with the
|
2018-12-07 00:50:54 -05:00
|
|
|
new change and checks if it's qualified to be merged into a target branch. This
|
2019-04-05 06:52:24 -04:00
|
|
|
pipeline should contain only necessary jobs for validating the new changes.
|
2018-12-18 08:22:51 -05:00
|
|
|
For example, unit tests, lint checks, and [Review Apps](../review_apps/index.md)
|
|
|
|
are often used in this cycle.
|
2018-12-07 00:50:54 -05:00
|
|
|
|
|
|
|
With pipelines for merge requests, you can design a specific pipeline structure
|
2019-04-05 06:52:24 -04:00
|
|
|
for when you are running a pipeline in a merge request. This
|
|
|
|
could be either adding or removing steps in the pipeline, to make sure that
|
|
|
|
your pipelines are as efficient as possible.
|
2019-03-14 19:55:02 -04:00
|
|
|
|
2019-07-01 03:52:53 -04:00
|
|
|
## Requirements and limitations
|
|
|
|
|
|
|
|
Pipelines for merge requests have the following requirements and limitations:
|
|
|
|
|
|
|
|
- As of GitLab 11.10, pipelines for merge requests require GitLab Runner 11.9
|
|
|
|
or higher due to the
|
2019-09-18 10:02:45 -04:00
|
|
|
[recent refspecs changes](https://gitlab.com/gitlab-org/gitlab-foss/merge_requests/25504).
|
2019-07-01 03:52:53 -04:00
|
|
|
- Pipelines for merge requests are incompatible with
|
|
|
|
[CI/CD for external repositories](../ci_cd_for_external_repos/index.md).
|
|
|
|
|
2019-03-14 19:55:02 -04:00
|
|
|
## Configuring pipelines for merge requests
|
|
|
|
|
2019-03-19 04:17:16 -04:00
|
|
|
To configure pipelines for merge requests, add the `only: merge_requests` parameter to
|
|
|
|
the jobs that you want to run only for merge requests.
|
2019-03-14 19:55:02 -04:00
|
|
|
|
2019-03-19 04:17:16 -04:00
|
|
|
Then, when developers create or update merge requests, a pipeline runs
|
|
|
|
every time a commit is pushed to GitLab.
|
2018-12-07 00:50:54 -05:00
|
|
|
|
|
|
|
NOTE: **Note**:
|
2019-03-14 19:55:02 -04:00
|
|
|
If you use this feature with [merge when pipeline succeeds](../../user/project/merge_requests/merge_when_pipeline_succeeds.md),
|
2018-12-18 08:22:51 -05:00
|
|
|
pipelines for merge requests take precedence over the other regular pipelines.
|
2018-12-07 00:50:54 -05:00
|
|
|
|
2018-12-18 08:22:51 -05:00
|
|
|
For example, consider the following [`.gitlab-ci.yml`](../yaml/README.md):
|
2018-12-07 00:50:54 -05:00
|
|
|
|
|
|
|
```yaml
|
|
|
|
build:
|
|
|
|
stage: build
|
|
|
|
script: ./build
|
|
|
|
only:
|
2019-04-05 06:52:24 -04:00
|
|
|
- master
|
2018-12-07 00:50:54 -05:00
|
|
|
|
|
|
|
test:
|
|
|
|
stage: test
|
|
|
|
script: ./test
|
|
|
|
only:
|
|
|
|
- merge_requests
|
|
|
|
|
|
|
|
deploy:
|
|
|
|
stage: deploy
|
|
|
|
script: ./deploy
|
2019-04-05 06:52:24 -04:00
|
|
|
only:
|
|
|
|
- master
|
2018-12-07 00:50:54 -05:00
|
|
|
```
|
|
|
|
|
2019-03-14 19:55:02 -04:00
|
|
|
After the merge request is updated with new commits:
|
|
|
|
|
|
|
|
- GitLab detects that changes have occurred and creates a new pipeline for the merge request.
|
|
|
|
- The pipeline fetches the latest code from the source branch and run tests against it.
|
|
|
|
|
2019-04-05 06:52:24 -04:00
|
|
|
In the above example, the pipeline contains only a `test` job.
|
|
|
|
Since the `build` and `deploy` jobs don't have the `only: merge_requests` parameter,
|
|
|
|
they will not run in the merge request.
|
2018-12-07 00:50:54 -05:00
|
|
|
|
2019-04-05 06:52:24 -04:00
|
|
|
Pipelines tagged with the **detached** badge indicate that they were triggered
|
2019-03-14 19:55:02 -04:00
|
|
|
when a merge request was created or updated. For example:
|
2018-12-07 00:50:54 -05:00
|
|
|
|
|
|
|
![Merge request page](img/merge_request.png)
|
|
|
|
|
2019-07-08 04:50:38 -04:00
|
|
|
## Pipelines for Merged Results **(PREMIUM)**
|
2019-04-05 06:52:24 -04:00
|
|
|
|
2019-07-03 07:06:52 -04:00
|
|
|
Read the [documentation on Pipelines for Merged Results](pipelines_for_merged_results/index.md).
|
2019-04-05 06:52:24 -04:00
|
|
|
|
2019-07-08 04:50:38 -04:00
|
|
|
### Merge Trains **(PREMIUM)**
|
2019-05-20 14:07:48 -04:00
|
|
|
|
2019-07-03 07:06:52 -04:00
|
|
|
Read the [documentation on Merge Trains](pipelines_for_merged_results/merge_trains/index.md).
|
2019-06-03 07:06:33 -04:00
|
|
|
|
2019-02-08 02:55:56 -05:00
|
|
|
## Excluding certain jobs
|
2019-02-05 06:03:25 -05:00
|
|
|
|
2019-03-19 04:17:16 -04:00
|
|
|
The behavior of the `only: merge_requests` parameter is such that _only_ jobs with
|
|
|
|
that parameter are run in the context of a merge request; no other jobs will be run.
|
2019-02-05 06:03:25 -05:00
|
|
|
|
2019-03-19 04:17:16 -04:00
|
|
|
However, you may want to reverse this behavior, having all of your jobs to run _except_
|
2019-03-14 19:55:02 -04:00
|
|
|
for one or two.
|
|
|
|
|
|
|
|
Consider the following pipeline, with jobs `A`, `B`, and `C`. Imagine you want:
|
|
|
|
|
2019-03-19 04:17:16 -04:00
|
|
|
- All pipelines to always run `A` and `B`.
|
|
|
|
- `C` to run only for merge requests.
|
2019-03-14 19:55:02 -04:00
|
|
|
|
|
|
|
To achieve this, you can configure your `.gitlab-ci.yml` file as follows:
|
2019-02-05 06:03:25 -05:00
|
|
|
|
|
|
|
``` yaml
|
|
|
|
.only-default: &only-default
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- merge_requests
|
|
|
|
- tags
|
|
|
|
|
|
|
|
A:
|
|
|
|
<<: *only-default
|
|
|
|
script:
|
|
|
|
- ...
|
2019-02-11 18:21:12 -05:00
|
|
|
|
2019-02-05 06:03:25 -05:00
|
|
|
B:
|
|
|
|
<<: *only-default
|
|
|
|
script:
|
|
|
|
- ...
|
|
|
|
|
|
|
|
C:
|
|
|
|
script:
|
|
|
|
- ...
|
|
|
|
only:
|
|
|
|
- merge_requests
|
|
|
|
```
|
|
|
|
|
2019-03-19 04:17:16 -04:00
|
|
|
Therefore:
|
2019-03-14 19:55:02 -04:00
|
|
|
|
2019-03-19 04:17:16 -04:00
|
|
|
- Since `A` and `B` are getting the `only:` rule to execute in all cases, they will always run.
|
|
|
|
- Since `C` specifies that it should only run for merge requests, it will not run for any pipeline
|
2019-03-14 19:55:02 -04:00
|
|
|
except a merge request pipeline.
|
2019-02-05 06:03:25 -05:00
|
|
|
|
|
|
|
As you can see, this will help you avoid a lot of boilerplate where you'd need
|
2019-02-08 02:56:39 -05:00
|
|
|
to add that `only:` rule to all of your jobs in order to make them always run. You
|
2019-02-05 06:03:25 -05:00
|
|
|
can use this for scenarios like having only pipelines with merge requests get a
|
|
|
|
Review App set up, helping to save resources.
|
|
|
|
|
2018-12-07 00:50:54 -05:00
|
|
|
## Important notes about merge requests from forked projects
|
|
|
|
|
|
|
|
Note that the current behavior is subject to change. In the usual contribution
|
|
|
|
flow, external contributors follow the following steps:
|
|
|
|
|
|
|
|
1. Fork a parent project.
|
|
|
|
1. Create a merge request from the forked project that targets the `master` branch
|
2019-02-22 08:17:10 -05:00
|
|
|
in the parent project.
|
2018-12-07 00:50:54 -05:00
|
|
|
1. A pipeline runs on the merge request.
|
2018-12-18 08:22:51 -05:00
|
|
|
1. A maintainer from the parent project checks the pipeline result, and merge
|
2019-02-22 08:17:10 -05:00
|
|
|
into a target branch if the latest pipeline has passed.
|
2018-12-07 00:50:54 -05:00
|
|
|
|
|
|
|
Currently, those pipelines are created in a **forked** project, not in the
|
|
|
|
parent project. This means you cannot completely trust the pipeline result,
|
|
|
|
because, technically, external contributors can disguise their pipeline results
|
|
|
|
by tweaking their GitLab Runner in the forked project.
|
|
|
|
|
|
|
|
There are multiple reasons about why GitLab doesn't allow those pipelines to be
|
2018-12-07 05:30:54 -05:00
|
|
|
created in the parent project, but one of the biggest reasons is security concern.
|
2018-12-07 00:50:54 -05:00
|
|
|
External users could steal secret variables from the parent project by modifying
|
2018-12-18 08:22:51 -05:00
|
|
|
`.gitlab-ci.yml`, which could be some sort of credentials. This should not happen.
|
2018-12-07 00:50:54 -05:00
|
|
|
|
2018-12-07 05:30:54 -05:00
|
|
|
We're discussing a secure solution of running pipelines for merge requests
|
2018-12-07 00:50:54 -05:00
|
|
|
that submitted from forked projects,
|
2019-09-18 10:02:45 -04:00
|
|
|
see [the issue about the permission extension](https://gitlab.com/gitlab-org/gitlab-foss/issues/23902).
|
2019-04-05 06:52:24 -04:00
|
|
|
|
|
|
|
## Additional predefined variables
|
|
|
|
|
|
|
|
By using pipelines for merge requests, GitLab exposes additional predefined variables to the pipeline jobs.
|
|
|
|
Those variables contain information of the associated merge request, so that it's useful
|
|
|
|
to integrate your job with [GitLab Merge Request API](../../api/merge_requests.md).
|
|
|
|
|
2019-05-20 10:11:44 -04:00
|
|
|
You can find the list of available variables in [the reference sheet](../variables/predefined_variables.md).
|
2019-04-05 06:52:24 -04:00
|
|
|
The variable names begin with the `CI_MERGE_REQUEST_` prefix.
|
2019-07-03 07:06:52 -04:00
|
|
|
|
|
|
|
<!-- ## Troubleshooting
|
|
|
|
|
|
|
|
Include any troubleshooting steps that you can foresee. If you know beforehand what issues
|
|
|
|
one might have when setting this up, or when something is changed, or on upgrading, it's
|
|
|
|
important to describe those, too. Think of things that may go wrong and include them here.
|
|
|
|
This is important to minimize requests for support, and to avoid doc comments with
|
|
|
|
questions that you know someone might ask.
|
|
|
|
|
|
|
|
Each scenario can be a third-level heading, e.g. `### Getting error message X`.
|
|
|
|
If you have none to add when creating a doc, leave this section in place
|
|
|
|
but commented out to help encourage others to add to it in the future. -->
|