2017-05-11 15:21:14 -04:00
|
|
|
# Pipelines settings
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2017-06-06 06:45:55 -04:00
|
|
|
To reach the pipelines settings navigate to your project's
|
2017-09-09 09:44:14 -04:00
|
|
|
**Settings ➔ CI/CD**.
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
The following settings can be configured per project.
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
## 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 `git clone` which is slower since it clones the repository from scratch
|
|
|
|
for every job, ensuring that the project workspace is always pristine.
|
|
|
|
- Using `git fetch` which is faster as it re-uses the project workspace (falling
|
|
|
|
back to clone if it doesn't exist).
|
|
|
|
|
|
|
|
The default Git strategy can be overridden by the [GIT_STRATEGY variable][var]
|
|
|
|
in `.gitlab-ci.yml`.
|
2016-08-05 05:29:09 -04:00
|
|
|
|
|
|
|
## Timeout
|
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
Timeout defines the maximum amount of time in minutes that a job is able run.
|
|
|
|
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.
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2017-07-05 08:11:01 -04:00
|
|
|
## Custom CI config path
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2017-06-28 06:17:53 -04:00
|
|
|
> - [Introduced][ce-12509] in GitLab 9.4.
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2017-06-28 06:17:53 -04:00
|
|
|
By default we look for the `.gitlab-ci.yml` file in the project's root
|
|
|
|
directory. If you require a different location **within** the repository,
|
2017-06-28 03:53:12 -04:00
|
|
|
you can set a custom filepath that will be used to lookup the config file,
|
2016-08-05 05:29:09 -04:00
|
|
|
this filepath should be **relative** to the root.
|
|
|
|
|
|
|
|
Here are some valid examples:
|
|
|
|
|
|
|
|
> * .gitlab-ci.yml
|
|
|
|
> * .my-custom-file.yml
|
|
|
|
> * my/path/.gitlab-ci.yml
|
|
|
|
> * my/path/.my-custom-file.yml
|
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
## Test coverage parsing
|
|
|
|
|
|
|
|
If you use test coverage in your code, GitLab can capture its output in the
|
2017-02-13 11:59:57 -05:00
|
|
|
job log using a regular expression. In the pipelines settings, search for the
|
2016-10-17 14:41:24 -04:00
|
|
|
"Test coverage parsing" section.
|
2016-10-17 11:00:30 -04:00
|
|
|
|
2016-10-17 14:41:24 -04:00
|
|
|
![Pipelines settings test coverage](img/pipelines_settings_test_coverage.png)
|
|
|
|
|
|
|
|
Leave blank if you want to disable it or enter a ruby regular expression. You
|
|
|
|
can use http://rubular.com to test your regex.
|
|
|
|
|
|
|
|
If the pipeline succeeds, the coverage is shown in the merge request widget and
|
2017-02-13 11:59:57 -05:00
|
|
|
in the jobs table.
|
2016-10-17 14:41:24 -04:00
|
|
|
|
|
|
|
![MR widget coverage](img/pipelines_test_coverage_mr_widget.png)
|
|
|
|
|
|
|
|
![Build status coverage](img/pipelines_test_coverage_build.png)
|
|
|
|
|
|
|
|
A few examples of known coverage tools for a variety of languages can be found
|
|
|
|
in the pipelines settings page.
|
2016-10-17 11:00:30 -04:00
|
|
|
|
|
|
|
## Visibility of pipelines
|
|
|
|
|
2017-09-06 05:20:44 -04:00
|
|
|
Access to pipelines and job details (including output of logs and artifacts)
|
|
|
|
is checked against your current user access level and the **Public pipelines**
|
|
|
|
project setting.
|
|
|
|
|
|
|
|
If **Public pipelines** is enabled (default):
|
|
|
|
|
|
|
|
- for **public** projects, anyone can view the pipelines and access the job details
|
|
|
|
(output logs and artifacts)
|
|
|
|
- for **internal** projects, any logged in user can view the pipelines
|
|
|
|
and access the job details
|
|
|
|
(output logs and artifacts)
|
|
|
|
- for **private** projects, any member (guest or higher) can view the pipelines
|
|
|
|
and access the job details
|
|
|
|
(output logs and artifacts)
|
|
|
|
|
|
|
|
If **Public pipelines** is disabled:
|
|
|
|
|
|
|
|
- for **public** projects, anyone can view the pipelines, but only members
|
|
|
|
(reporter or higher) can access the job details (output logs and artifacts)
|
|
|
|
- for **internal** projects, any logged in user can view the pipelines,
|
|
|
|
but only members (reporter or higher) can access the job details (output logs
|
|
|
|
and artifacts)
|
|
|
|
- for **private** projects, only members (reporter or higher)
|
|
|
|
can view the pipelines and access the job details (output logs and artifacts)
|
2016-10-17 11:00:30 -04:00
|
|
|
|
2017-02-19 17:17:24 -05:00
|
|
|
## Auto-cancel pending pipelines
|
|
|
|
|
|
|
|
> [Introduced][ce-9362] in GitLab 9.1.
|
|
|
|
|
2017-06-28 03:53:12 -04:00
|
|
|
If you want to auto-cancel all pending non-HEAD pipelines on branch, when
|
|
|
|
new pipeline will be created (after your git push or manually from UI),
|
2017-02-19 17:17:24 -05:00
|
|
|
check **Auto-cancel pending pipelines** checkbox and save the changes.
|
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
## Badges
|
|
|
|
|
2017-02-16 16:23:56 -05:00
|
|
|
In the pipelines settings page you can find pipeline status and test coverage
|
2016-10-17 11:00:30 -04:00
|
|
|
badges for your project. The latest successful pipeline will be used to read
|
2017-02-16 16:23:56 -05:00
|
|
|
the pipeline status and test coverage values.
|
2016-10-17 11:00:30 -04:00
|
|
|
|
2016-10-17 14:41:24 -04:00
|
|
|
Visit the pipelines settings page in your project to see the exact link to
|
2016-10-17 11:00:30 -04:00
|
|
|
your badges, as well as ways to embed the badge image in your HTML or Markdown
|
|
|
|
pages.
|
|
|
|
|
|
|
|
![Pipelines badges](img/pipelines_settings_badges.png)
|
|
|
|
|
2017-02-16 16:23:56 -05:00
|
|
|
### Pipeline status badge
|
2016-10-17 11:00:30 -04:00
|
|
|
|
2017-02-13 11:59:57 -05:00
|
|
|
Depending on the status of your job, a badge can have the following values:
|
2016-10-17 11:00:30 -04:00
|
|
|
|
2017-11-20 06:29:11 -05:00
|
|
|
- pending
|
2016-10-17 11:00:30 -04:00
|
|
|
- running
|
2017-11-20 06:29:11 -05:00
|
|
|
- passed
|
2016-10-17 11:00:30 -04:00
|
|
|
- failed
|
|
|
|
- skipped
|
2017-11-20 06:29:11 -05:00
|
|
|
- canceled
|
2016-10-17 11:00:30 -04:00
|
|
|
- unknown
|
|
|
|
|
2017-02-16 16:23:56 -05:00
|
|
|
You can access a pipeline status badge image using the following link:
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
```
|
|
|
|
https://example.gitlab.com/<namespace>/<project>/badges/<branch>/build.svg
|
|
|
|
```
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
### Test coverage report badge
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
GitLab makes it possible to define the regular expression for [coverage report],
|
2017-02-13 11:59:57 -05:00
|
|
|
that each job log will be matched against. This means that each job in the
|
2016-10-17 11:00:30 -04:00
|
|
|
pipeline can have the test coverage percentage value defined.
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
The test coverage badge can be accessed using following link:
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
```
|
|
|
|
https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg
|
|
|
|
```
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
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
|
|
|
|
Markdown code will embed the test coverage report badge of the `coverage` job
|
|
|
|
into your `README.md`:
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
```markdown
|
|
|
|
![coverage](https://gitlab.com/gitlab-org/gitlab-ce/badges/master/coverage.svg?job=coverage)
|
|
|
|
```
|
2016-08-05 05:29:09 -04:00
|
|
|
|
2016-10-17 11:00:30 -04:00
|
|
|
[var]: ../../../ci/yaml/README.md#git-strategy
|
|
|
|
[coverage report]: #test-coverage-parsing
|
2017-02-19 17:17:24 -05:00
|
|
|
[ce-9362]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9362
|
2017-06-28 06:17:53 -04:00
|
|
|
[ce-12509]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/12509
|