debian-mirror-gitlab/doc/ci/merge_request_pipelines/index.md

226 lines
7.7 KiB
Markdown
Raw Normal View History

2019-09-04 21:01:54 +05:30
---
2020-06-23 00:09:42 +05:30
stage: Verify
group: Continuous Integration
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/#designated-technical-writers
2019-09-30 21:07:59 +05:30
type: reference, index
last_update: 2019-07-03
2019-09-04 21:01:54 +05:30
---
2019-09-30 21:07:59 +05:30
# Pipelines for Merge Requests
2019-07-07 11:18:12 +05:30
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/15310) in GitLab 11.6.
2019-02-15 15:39:39 +05:30
2020-04-22 19:07:51 +05:30
In a [basic configuration](../pipelines/pipeline_architectures.md#basic-pipelines), GitLab runs a pipeline each time
changes are pushed to a branch.
2019-02-15 15:39:39 +05:30
2020-04-22 19:07:51 +05:30
If you want the pipeline to run jobs **only** when merge requests are created or updated,
you can use *pipelines for merge requests*.
2019-07-07 11:18:12 +05:30
2020-05-24 23:13:21 +05:30
In the UI, these pipelines are labeled as `detached`. Otherwise, these pipelines appear the same
as other pipelines.
2019-09-30 21:07:59 +05:30
2020-05-24 23:13:21 +05:30
Any user who has developer [permissions](../../user/permissions.md)
can run a pipeline for merge requests.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
![Merge request page](img/merge_request.png)
2019-02-15 15:39:39 +05:30
2020-05-24 23:13:21 +05:30
NOTE: **Note**:
If you use this feature with [merge when pipeline succeeds](../../user/project/merge_requests/merge_when_pipeline_succeeds.md),
pipelines for merge requests take precedence over the other regular pipelines.
2019-02-15 15:39:39 +05:30
2020-05-24 23:13:21 +05:30
## Prerequisites
2019-02-15 15:39:39 +05:30
2020-05-24 23:13:21 +05:30
To enable pipelines for merge requests:
2019-07-07 11:18:12 +05:30
2020-05-24 23:13:21 +05:30
- You must have maintainer [permissions](../../user/permissions.md).
- Your repository must be a GitLab repository, not an
[external repository](../ci_cd_for_external_repos/index.md).
- [In GitLab 11.10 and later](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/25504),
you must be using GitLab Runner 11.9.
2019-07-07 11:18:12 +05:30
2020-05-24 23:13:21 +05:30
## Configuring pipelines for merge requests
2019-02-15 15:39:39 +05:30
2020-05-24 23:13:21 +05:30
To configure pipelines for merge requests you need to configure your [CI/CD configuration file](../yaml/README.md).
There are a few different ways to do this:
2019-02-15 15:39:39 +05:30
2020-05-24 23:13:21 +05:30
### Use `rules` to run pipelines for merge requests
2019-09-04 21:01:54 +05:30
2020-05-24 23:13:21 +05:30
When using `rules`, which is the preferred method, we recommend starting with one
of the [`workflow:rules` templates](../yaml/README.md#workflowrules-templates) to ensure
your basic configuration is correct. Instructions on how to do this, as well as how
to customize, are available at that link.
2019-09-04 21:01:54 +05:30
2020-04-22 19:07:51 +05:30
### Use `only` or `except` to run pipelines for merge requests
2019-09-04 21:01:54 +05:30
2020-05-24 23:13:21 +05:30
If you want to continue using `only/except`, this is possible but please review the drawbacks
below.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
When you use this method, you have to specify `only: - merge_requests` for each job. In this
example, the pipeline contains a `test` job that is configured to run on merge requests.
2019-09-04 21:01:54 +05:30
2020-04-22 19:07:51 +05:30
The `build` and `deploy` jobs don't have the `only: - merge_requests` parameter,
so they will not run on merge requests.
```yaml
build:
stage: build
script: ./build
only:
- master
test:
stage: test
script: ./test
only:
- merge_requests
deploy:
stage: deploy
script: ./deploy
only:
- master
```
#### Excluding certain jobs
2019-03-02 22:35:43 +05:30
2020-01-01 13:55:28 +05:30
The behavior of the `only: [merge_requests]` parameter is such that _only_ jobs with
2019-07-07 11:18:12 +05:30
that parameter are run in the context of a merge request; no other jobs will be run.
2020-04-08 14:13:33 +05:30
However, you can invert this behavior and have all of your jobs run _except_
2019-07-07 11:18:12 +05:30
for one or two.
2019-03-02 22:35:43 +05:30
2019-07-07 11:18:12 +05:30
Consider the following pipeline, with jobs `A`, `B`, and `C`. Imagine you want:
- All pipelines to always run `A` and `B`.
- `C` to run only for merge requests.
To achieve this, you can configure your `.gitlab-ci.yml` file as follows:
2019-03-02 22:35:43 +05:30
``` yaml
.only-default: &only-default
only:
- master
- merge_requests
- tags
A:
<<: *only-default
script:
- ...
B:
<<: *only-default
script:
- ...
C:
script:
- ...
only:
- merge_requests
```
2019-07-07 11:18:12 +05:30
Therefore:
- 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
except a merge request pipeline.
2019-03-02 22:35:43 +05:30
2020-04-22 19:07:51 +05:30
This helps you avoid having to add the `only:` rule to all of your jobs
in order to make them always run. You can use this format to set up a Review App, helping to save resources.
2019-03-02 22:35:43 +05:30
2020-04-22 19:07:51 +05:30
#### Excluding certain branches
2020-01-01 13:55:28 +05:30
2020-03-13 15:44:24 +05:30
Pipelines for merge requests require special treatment when
2020-01-01 13:55:28 +05:30
using [`only`/`except`](../yaml/README.md#onlyexcept-basic). Unlike ordinary
branch refs (for example `refs/heads/my-feature-branch`), merge request refs
use a special Git reference that looks like `refs/merge-requests/:iid/head`. Because
of this, the following configuration will **not** work as expected:
```yaml
# Does not exclude a branch named "docs-my-fix"!
test:
only: [merge_requests]
except: [/^docs-/]
```
Instead, you can use the
[`$CI_COMMIT_REF_NAME` predefined environment
2020-06-23 00:09:42 +05:30
variable](../variables/predefined_variables.md) in
2020-01-01 13:55:28 +05:30
combination with
[`only:variables`](../yaml/README.md#onlyvariablesexceptvariables) to
accomplish this behavior:
```yaml
test:
only: [merge_requests]
except:
variables:
2020-03-13 15:44:24 +05:30
- $CI_COMMIT_REF_NAME =~ /^docs-/
2020-01-01 13:55:28 +05:30
```
2020-04-22 19:07:51 +05:30
## Pipelines for Merged Results **(PREMIUM)**
Read the [documentation on Pipelines for Merged Results](pipelines_for_merged_results/index.md).
### Merge Trains **(PREMIUM)**
Read the [documentation on Merge Trains](pipelines_for_merged_results/merge_trains/index.md).
2019-02-15 15:39:39 +05:30
## 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-07-07 11:18:12 +05:30
in the parent project.
2019-02-15 15:39:39 +05:30
1. A pipeline runs on the merge request.
1. A maintainer from the parent project checks the pipeline result, and merge
2019-07-07 11:18:12 +05:30
into a target branch if the latest pipeline has passed.
2019-02-15 15:39:39 +05:30
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.
2019-12-21 20:55:43 +05:30
There are multiple reasons why GitLab doesn't allow those pipelines to be
2019-02-15 15:39:39 +05:30
created in the parent project, but one of the biggest reasons is security concern.
External users could steal secret variables from the parent project by modifying
`.gitlab-ci.yml`, which could be some sort of credentials. This should not happen.
We're discussing a secure solution of running pipelines for merge requests
2019-12-21 20:55:43 +05:30
that are submitted from forked projects,
2020-04-08 14:13:33 +05:30
see [the issue about the permission extension](https://gitlab.com/gitlab-org/gitlab/-/issues/11934).
2019-07-07 11:18:12 +05:30
## 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-09-04 21:01:54 +05:30
You can find the list of available variables in [the reference sheet](../variables/predefined_variables.md).
2019-07-07 11:18:12 +05:30
The variable names begin with the `CI_MERGE_REQUEST_` prefix.
2019-09-30 21:07:59 +05:30
2020-05-24 23:13:21 +05:30
## Troubleshooting
### Two pipelines created when pushing to a merge request
If you are experiencing duplicated pipelines when using `rules`, take a look at
the [key details when using `rules`](../yaml/README.md#key-details-when-using-rules),
which will help you get your starting configuration correct.
If you are seeing two pipelines when using `only/except`, please see the caveats
related to using `only/except` above (or, consider moving to `rules`).
### Two pipelines created when pushing an invalid CI configuration file
Pushing to a branch with an invalid CI configuration file can trigger
the creation of two types of failed pipelines. One pipeline is a failed merge request
pipeline, and the other is a failed branch pipeline, but both are caused by the same
invalid configuration.
2019-09-30 21:07:59 +05:30
2020-05-24 23:13:21 +05:30
In rare cases, duplicate pipelines are created.
2019-09-30 21:07:59 +05:30
2020-05-24 23:13:21 +05:30
See [this issue](https://gitlab.com/gitlab-org/gitlab/-/issues/201845) for details.