debian-mirror-gitlab/doc/ci/pipelines/settings.md

367 lines
15 KiB
Markdown
Raw Normal View History

2020-04-08 14:13:33 +05:30
---
2020-06-23 00:09:42 +05:30
stage: Verify
group: Continuous Integration
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
2020-04-08 14:13:33 +05:30
disqus_identifier: 'https://docs.gitlab.com/ee/user/project/pipelines/settings.html'
type: reference, howto
---
2021-04-17 20:07:23 +05:30
# Pipeline settings **(FREE)**
2020-04-08 14:13:33 +05:30
To reach the pipelines settings navigate to your project's
**Settings > CI/CD**.
The following settings can be configured per project.
<i class="fa fa-youtube-play youtube" aria-hidden="true"></i>
For an overview, watch the video [GitLab CI Pipeline, Artifacts, and Environments](https://www.youtube.com/watch?v=PCKDICEe10s).
Watch also [GitLab CI pipeline tutorial for beginners](https://www.youtube.com/watch?v=Jav4vbUrqII).
2021-04-17 20:07:23 +05:30
You can use the pipeline status to determine if a merge request can be merged:
- [Merge when pipeline succeeds](../../user/project/merge_requests/merge_when_pipeline_succeeds.md).
- [Only allow merge requests to be merged if the pipeline succeeds](../../user/project/merge_requests/merge_when_pipeline_succeeds.md#only-allow-merge-requests-to-be-merged-if-the-pipeline-succeeds).
2020-04-08 14:13:33 +05:30
## Git strategy
With Git strategy, you can choose the default way your repository is fetched
from GitLab in a job.
There are two options. Using:
2021-04-17 20:07:23 +05:30
- `git clone`, which is slower because it clones the repository from scratch
2020-04-08 14:13:33 +05:30
for every job, ensuring that the local working copy is always pristine.
2021-02-22 17:27:13 +05:30
- `git fetch`, which is default in GitLab and faster as it re-uses the local working copy (falling
2020-04-08 14:13:33 +05:30
back to clone if it doesn't exist).
2021-01-29 00:20:46 +05:30
This is recommended, especially for [large repositories](../large_repositories/index.md#git-strategy).
2020-04-08 14:13:33 +05:30
2021-01-29 00:20:46 +05:30
The configured Git strategy can be overridden by the [`GIT_STRATEGY` variable](../runners/README.md#git-strategy)
2020-04-08 14:13:33 +05:30
in `.gitlab-ci.yml`.
## Git shallow clone
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/28919) in GitLab 12.0.
2021-01-03 14:25:43 +05:30
It is possible to limit the number of changes that GitLab CI/CD fetches when cloning
a repository. Setting a limit to `git depth` can speed up Pipelines execution.
2020-04-08 14:13:33 +05:30
2021-01-03 14:25:43 +05:30
In GitLab 12.0 and later, newly created projects automatically have a default
`git depth` value of `50`. The maximum allowed value is `1000`.
2020-04-08 14:13:33 +05:30
To disable shallow clone and make GitLab CI/CD fetch all branches and tags each time,
keep the value empty or set to `0`.
This value can also be [overridden by `GIT_DEPTH`](../large_repositories/index.md#shallow-cloning) variable in `.gitlab-ci.yml` file.
## Timeout
Timeout defines the maximum amount of time in minutes that a job is able run.
This is configurable under your project's **Settings > CI/CD > General pipelines settings**.
The default value is 60 minutes. Decrease the time limit if you want to impose
a hard limit on your jobs' running time or increase it otherwise. In any case,
if the job surpasses the threshold, it is marked as failed.
2020-11-24 15:15:51 +05:30
### Timeout overriding for runners
2020-04-08 14:13:33 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/17221) in GitLab 10.7.
Project defined timeout (either specific timeout set by user or the default
2020-11-24 15:15:51 +05:30
60 minutes timeout) may be [overridden for runners](../runners/README.md#set-maximum-job-timeout-for-a-runner).
2020-04-08 14:13:33 +05:30
2021-03-11 19:13:27 +05:30
## Maximum artifacts size **(FREE SELF)**
2020-04-08 14:13:33 +05:30
For information about setting a maximum artifact size for a project, see
2020-11-24 15:15:51 +05:30
[Maximum artifacts size](../../user/admin_area/settings/continuous_integration.md#maximum-artifacts-size).
2020-04-08 14:13:33 +05:30
2021-03-11 19:13:27 +05:30
## Custom CI/CD configuration path
2020-04-08 14:13:33 +05:30
2021-04-17 20:07:23 +05:30
> [Support for external `.gitlab-ci.yml` locations](https://gitlab.com/gitlab-org/gitlab/-/issues/14376) introduced in GitLab 12.6.
2020-04-08 14:13:33 +05:30
By default we look for the `.gitlab-ci.yml` file in the project's root
2021-01-03 14:25:43 +05:30
directory. If needed, you can specify an alternate path and filename, including locations outside the project.
2020-04-08 14:13:33 +05:30
To customize the path:
2021-04-17 20:07:23 +05:30
1. Go to the project's **Settings > CI/CD**.
2020-04-08 14:13:33 +05:30
1. Expand the **General pipelines** section.
2021-03-11 19:13:27 +05:30
1. Provide a value in the **CI/CD configuration file** field.
2020-04-08 14:13:33 +05:30
1. Click **Save changes**.
2021-04-17 20:07:23 +05:30
If the CI configuration is stored in the repository in a non-default
2020-04-08 14:13:33 +05:30
location, the path must be relative to the root directory. Examples of valid
paths and file names include:
- `.gitlab-ci.yml` (default)
- `.my-custom-file.yml`
- `my/path/.gitlab-ci.yml`
- `my/path/.my-custom-file.yml`
2021-01-03 14:25:43 +05:30
If hosting the CI configuration on an external site, the URL link must end with `.yml`:
2020-04-08 14:13:33 +05:30
- `http://example.com/generate/ci/config.yml`
2021-04-17 20:07:23 +05:30
If hosting the CI configuration in a different project in GitLab, the path must be relative
2021-01-03 14:25:43 +05:30
to the root directory in the other project. Include the group and project name at the end:
2020-04-08 14:13:33 +05:30
- `.gitlab-ci.yml@mygroup/another-project`
- `my/path/.my-custom-file.yml@mygroup/another-project`
Hosting the configuration file in a separate project allows stricter control of the
configuration file. For example:
- Create a public project to host the configuration file.
- Give write permissions on the project only to users who are allowed to edit the file.
2021-01-03 14:25:43 +05:30
Other users and projects can access the configuration file without being
2020-04-08 14:13:33 +05:30
able to edit it.
## Test coverage parsing
If you use test coverage in your code, GitLab can capture its output in the
2021-04-17 20:07:23 +05:30
job log using a regular expression.
2020-04-08 14:13:33 +05:30
2021-04-17 20:07:23 +05:30
In your project, go to **Settings > CI/CD** and expand the **General pipelines**
section. Enter the regular expression in the **Test coverage parsing** field.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
Leave blank if you want to disable it or enter a Ruby regular expression. You
2020-06-23 00:09:42 +05:30
can use <https://rubular.com> to test your regex. The regex returns the **last**
match found in the output.
2020-04-08 14:13:33 +05:30
If the pipeline succeeds, the coverage is shown in the merge request widget and
2021-01-03 14:25:43 +05:30
in the jobs table. If multiple jobs in the pipeline have coverage reports, they are
averaged.
2020-04-08 14:13:33 +05:30
![MR widget coverage](img/pipelines_test_coverage_mr_widget.png)
![Build status coverage](img/pipelines_test_coverage_build.png)
2021-03-11 19:13:27 +05:30
<!-- vale gitlab.Spelling = NO -->
2021-04-29 21:17:54 +05:30
- Simplecov (Ruby). Example: `\(\d+.\d+\%\) covered`.
- pytest-cov (Python). Example: `^TOTAL.+?(\d+\%)$`.
- Scoverage (Scala). Example: `Statement coverage[A-Za-z\.*]\s*:\s*([^%]+)`.
- `phpunit --coverage-text --colors=never` (PHP). Example: `^\s*Lines:\s*\d+.\d+\%`.
- gcovr (C/C++). Example: `^TOTAL.*\s+(\d+\%)$`.
- `tap --coverage-report=text-summary` (NodeJS). Example: `^Statements\s*:\s*([^%]+)`.
- `nyc npm test` (NodeJS). Example: `All files[^|]*\|[^|]*\s+([\d\.]+)`.
- excoveralls (Elixir). Example: `\[TOTAL\]\s+(\d+\.\d+)%`.
- `mix test --cover` (Elixir). Example: `\d+.\d+\%\s+\|\s+Total`.
- JaCoCo (Java/Kotlin). Example: `Total.*?([0-9]{1,3})%`.
- `go test -cover` (Go). Example: `coverage: \d+.\d+% of statements`.
- .Net (OpenCover). Example: `(Visited Points).*\((.*)\)`.
- .Net (`dotnet test` line coverage). Example: `Total\s*\|\s*(\d+\.?\d+)`.
2021-03-11 19:13:27 +05:30
<!-- vale gitlab.Spelling = YES -->
2020-04-08 14:13:33 +05:30
2020-06-23 00:09:42 +05:30
### Code Coverage history
2020-05-24 23:13:21 +05:30
2020-06-23 00:09:42 +05:30
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/209121) the ability to download a `.csv` in GitLab 12.10.
> - [Graph introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/33743) in GitLab 13.1.
2020-05-24 23:13:21 +05:30
2021-01-03 14:25:43 +05:30
To see the evolution of your project code coverage over time,
2020-06-23 00:09:42 +05:30
you can view a graph or download a CSV file with this data. From your project:
2020-05-24 23:13:21 +05:30
2021-04-17 20:07:23 +05:30
1. Go to **Project Analytics > Repository** to see the historic data for each job listed in the dropdown above the graph.
2021-03-11 19:13:27 +05:30
1. If you want a CSV file of that data, click **Download raw data (`.csv`)**
2020-06-23 00:09:42 +05:30
![Code coverage graph of a project over time](img/code_coverage_graph_v13_1.png)
2020-05-24 23:13:21 +05:30
2021-04-17 20:07:23 +05:30
Code coverage data is also [available at the group level](../../user/group/repositories_analytics/index.md).
2020-04-08 14:13:33 +05:30
### Removing color codes
2021-01-03 14:25:43 +05:30
Some test coverage tools output with ANSI color codes that aren't
parsed correctly by the regular expression. This causes coverage
2020-04-08 14:13:33 +05:30
parsing to fail.
2021-01-03 14:25:43 +05:30
Some coverage tools don't provide an option to disable color
codes in the output. If so, pipe the output of the coverage tool through a
small one line script that strips the color codes off.
2020-04-08 14:13:33 +05:30
For example:
```shell
lein cloverage | perl -pe 's/\e\[?.*?[\@-~]//g'
```
## Visibility of pipelines
Pipeline visibility is determined by:
- Your current [user access level](../../user/permissions.md).
- The **Public pipelines** project setting under your project's **Settings > CI/CD > General pipelines**.
2021-02-22 17:27:13 +05:30
NOTE:
2021-01-03 14:25:43 +05:30
If the project visibility is set to **Private**, the [**Public pipelines** setting has no effect](../enable_or_disable_ci.md#per-project-user-setting).
2020-04-08 14:13:33 +05:30
This also determines the visibility of these related features:
- Job output logs
- Job artifacts
2020-04-22 19:07:51 +05:30
- The [pipeline security dashboard](../../user/application_security/security_dashboard/index.md#pipeline-security) **(ULTIMATE)**
2020-04-08 14:13:33 +05:30
2021-01-03 14:25:43 +05:30
Job logs and artifacts are [not visible for guest users and non-project members](https://gitlab.com/gitlab-org/gitlab/-/issues/25649).
2020-05-24 23:13:21 +05:30
2020-04-08 14:13:33 +05:30
If **Public pipelines** is enabled (default):
- For **public** projects, anyone can view the pipelines and related features.
2021-01-29 00:20:46 +05:30
- For **internal** projects, any logged in user except [external users](../../user/permissions.md#external-users) can view the pipelines
2020-04-08 14:13:33 +05:30
and related features.
- For **private** projects, any project member (guest or higher) can view the pipelines
and related features.
If **Public pipelines** is disabled:
- For **public** projects, anyone can view the pipelines, but only members
(reporter or higher) can access the related features.
2021-01-29 00:20:46 +05:30
- For **internal** projects, any logged in user except [external users](../../user/permissions.md#external-users) can view the pipelines.
2020-04-08 14:13:33 +05:30
However, only members (reporter or higher) can access the job related features.
- For **private** projects, only project members (reporter or higher)
can view the pipelines or access the related features.
2021-03-11 19:13:27 +05:30
## Auto-cancel redundant pipelines
2020-04-08 14:13:33 +05:30
2021-01-03 14:25:43 +05:30
You can set pending or running pipelines to cancel automatically when a new pipeline runs on the same branch. You can enable this in the project settings:
2020-04-08 14:13:33 +05:30
2021-04-17 20:07:23 +05:30
1. Go to **Settings > CI/CD**.
2020-04-08 14:13:33 +05:30
1. Expand **General Pipelines**.
2021-03-11 19:13:27 +05:30
1. Check the **Auto-cancel redundant pipelines** checkbox.
2020-04-08 14:13:33 +05:30
1. Click **Save changes**.
2021-02-22 17:27:13 +05:30
Use the [`interruptible`](../yaml/README.md#interruptible) keyword to indicate if a
running job can be cancelled before it completes.
2020-06-23 00:09:42 +05:30
2020-04-08 14:13:33 +05:30
## Skip outdated deployment jobs
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/25276) in GitLab 12.9.
2020-04-08 14:13:33 +05:30
Your project may have multiple concurrent deployment jobs that are
2021-04-17 20:07:23 +05:30
scheduled to run in the same time frame.
2020-04-08 14:13:33 +05:30
This can lead to a situation where an older deployment job runs after a
newer one, which may not be what you want.
To avoid this scenario:
2021-04-17 20:07:23 +05:30
1. Go to **Settings > CI/CD**.
2020-04-08 14:13:33 +05:30
1. Expand **General pipelines**.
1. Check the **Skip outdated deployment jobs** checkbox.
1. Click **Save changes**.
2021-01-03 14:25:43 +05:30
When enabled, any older deployments job are skipped when a new deployment starts.
2020-04-08 14:13:33 +05:30
2020-06-23 00:09:42 +05:30
For more information, see [Deployment safety](../environments/deployment_safety.md).
2021-01-29 00:20:46 +05:30
## Retry outdated jobs
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/211339) in GitLab 13.6.
A deployment job can fail because a newer one has run. If you retry the failed deployment job, the
environment could be overwritten with older source code. If you click **Retry**, a modal warns you
about this and asks for confirmation.
For more information, see [Deployment safety](../environments/deployment_safety.md).
2020-06-23 00:09:42 +05:30
2020-04-08 14:13:33 +05:30
## Pipeline Badges
In the pipelines settings page you can find pipeline status and test coverage
2021-01-03 14:25:43 +05:30
badges for your project. The latest successful pipeline is used to read
2020-04-08 14:13:33 +05:30
the pipeline status and test coverage values.
Visit the pipelines settings page in your project to see the exact link to
2021-01-03 14:25:43 +05:30
your badges. You can also see ways to embed the badge image in your HTML or Markdown
2020-04-08 14:13:33 +05:30
pages.
![Pipelines badges](img/pipelines_settings_badges.png)
### Pipeline status badge
2021-04-17 20:07:23 +05:30
Depending on the status of your pipeline, a badge can have the following values:
2020-04-08 14:13:33 +05:30
2021-04-17 20:07:23 +05:30
- `pending`
- `running`
- `passed`
- `failed`
- `skipped`
- `canceled`
- `unknown`
2020-04-08 14:13:33 +05:30
You can access a pipeline status badge image using the following link:
2020-05-24 23:13:21 +05:30
```plaintext
2020-11-24 15:15:51 +05:30
https://gitlab.example.com/<namespace>/<project>/badges/<branch>/pipeline.svg
```
#### Display only non-skipped status
If you want the pipeline status badge to only display the last non-skipped status, you can use the `?ignore_skipped=true` query parameter:
```plaintext
https://gitlab.example.com/<namespace>/<project>/badges/<branch>/pipeline.svg?ignore_skipped=true
2020-04-08 14:13:33 +05:30
```
### Test coverage report badge
2021-01-03 14:25:43 +05:30
GitLab makes it possible to define the regular expression for the [coverage report](#test-coverage-parsing),
that each job log is matched against. This means that each job in the
2020-04-08 14:13:33 +05:30
pipeline can have the test coverage percentage value defined.
The test coverage badge can be accessed using following link:
2020-05-24 23:13:21 +05:30
```plaintext
2020-11-24 15:15:51 +05:30
https://gitlab.example.com/<namespace>/<project>/badges/<branch>/coverage.svg
2020-04-08 14:13:33 +05:30
```
If you would like to get the coverage report from a specific job, you can add
the `job=coverage_job_name` parameter to the URL. For example, the following
2021-01-03 14:25:43 +05:30
Markdown code embeds the test coverage report badge of the `coverage` job
2020-04-08 14:13:33 +05:30
into your `README.md`:
```markdown
2020-07-28 23:09:34 +05:30
![coverage](https://gitlab.com/gitlab-org/gitlab/badges/master/coverage.svg?job=coverage)
2020-04-08 14:13:33 +05:30
```
### Badge styles
2021-01-03 14:25:43 +05:30
Pipeline badges can be rendered in different styles by adding the `style=style_name` parameter to the URL. Two styles are available:
2020-04-08 14:13:33 +05:30
2021-04-17 20:07:23 +05:30
- Flat (default):
2020-04-08 14:13:33 +05:30
2021-04-17 20:07:23 +05:30
```plaintext
https://gitlab.example.com/<namespace>/<project>/badges/<branch>/coverage.svg?style=flat
```
2020-04-08 14:13:33 +05:30
2021-04-17 20:07:23 +05:30
![Badge flat style](https://gitlab.com/gitlab-org/gitlab/badges/master/coverage.svg?job=coverage&style=flat)
2020-04-08 14:13:33 +05:30
2021-04-17 20:07:23 +05:30
- Flat square ([Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/30120) in GitLab 11.8):
2020-04-08 14:13:33 +05:30
2021-04-17 20:07:23 +05:30
```plaintext
https://gitlab.example.com/<namespace>/<project>/badges/<branch>/coverage.svg?style=flat-square
```
2020-04-08 14:13:33 +05:30
2021-04-17 20:07:23 +05:30
![Badge flat square style](https://gitlab.com/gitlab-org/gitlab/badges/master/coverage.svg?job=coverage&style=flat-square)
2020-04-08 14:13:33 +05:30
2020-06-23 00:09:42 +05:30
### Custom badge text
2020-07-28 23:09:34 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/17555) in GitLab 13.1.
2021-04-17 20:07:23 +05:30
The text for a badge can be customized to differentiate between multiple coverage jobs that run in the same pipeline. Customize the badge text and width by adding the `key_text=custom_text` and `key_width=custom_key_width` parameters to the URL:
2020-06-23 00:09:42 +05:30
```plaintext
2021-01-03 14:25:43 +05:30
https://gitlab.com/gitlab-org/gitlab/badges/master/coverage.svg?job=karma&key_text=Frontend+Coverage&key_width=130
2020-06-23 00:09:42 +05:30
```
2021-01-03 14:25:43 +05:30
![Badge with custom text and width](https://gitlab.com/gitlab-org/gitlab/badges/master/coverage.svg?job=karma&key_text=Frontend+Coverage&key_width=130)
2020-06-23 00:09:42 +05:30
2020-04-08 14:13:33 +05:30
<!-- ## 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. -->