Commit 411579d7 authored by Achilleas Pipinellis's avatar Achilleas Pipinellis

Merge branch 'docs/add-version-text-to-new-badge-style' into 'master'

Add version text and refactor file

See merge request gitlab-org/gitlab-ce!24517
parents d56b76a5 dc8b2ef5
# Pipelines settings # Pipelines settings
To reach the pipelines settings navigate to your project's To reach the pipelines settings navigate to your project's
**Settings CI/CD**. **Settings > CI/CD**.
The following settings can be configured per project. The following settings can be configured per project.
...@@ -10,14 +10,14 @@ The following settings can be configured per project. ...@@ -10,14 +10,14 @@ The following settings can be configured per project.
With Git strategy, you can choose the default way your repository is fetched With Git strategy, you can choose the default way your repository is fetched
from GitLab in a job. from GitLab in a job.
There are two options: There are two options. Using:
- Using `git clone` which is slower since it clones the repository from scratch - `git clone`, which is slower since it clones the repository from scratch
for every job, ensuring that the project workspace is always pristine. 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 - `git fetch`, which is faster as it re-uses the project workspace (falling
back to clone if it doesn't exist). back to clone if it doesn't exist).
The default Git strategy can be overridden by the [GIT_STRATEGY variable][var] The default Git strategy can be overridden by the [GIT_STRATEGY variable](../../../ci/yaml/README.md#git-strategy)
in `.gitlab-ci.yml`. in `.gitlab-ci.yml`.
## Timeout ## Timeout
...@@ -29,14 +29,14 @@ if the job surpasses the threshold, it is marked as failed. ...@@ -29,14 +29,14 @@ if the job surpasses the threshold, it is marked as failed.
### Timeout overriding on Runner level ### Timeout overriding on Runner level
> - [Introduced][ce-17221] in GitLab 10.7. > [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/17221) in GitLab 10.7.
Project defined timeout (either specific timeout set by user or the default Project defined timeout (either specific timeout set by user or the default
60 minutes timeout) may be [overridden on Runner level][timeout overriding]. 60 minutes timeout) may be [overridden on Runner level](../../../ci/runners/README.html#setting-maximum-job-timeout-for-a-runner).
## Custom CI config path ## Custom CI config path
> - [Introduced][ce-12509] in GitLab 9.4. > [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/12509) in GitLab 9.4.
By default we look for the `.gitlab-ci.yml` file in the project's root 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, directory. If you require a different location **within** the repository,
...@@ -59,7 +59,7 @@ job log using a regular expression. In the pipelines settings, search for the ...@@ -59,7 +59,7 @@ job log using a regular expression. In the pipelines settings, search for the
![Pipelines settings test coverage](img/pipelines_settings_test_coverage.png) ![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 Leave blank if you want to disable it or enter a ruby regular expression. You
can use http://rubular.com to test your regex. can use <http://rubular.com> to test your regex.
If the pipeline succeeds, the coverage is shown in the merge request widget and If the pipeline succeeds, the coverage is shown in the merge request widget and
in the jobs table. in the jobs table.
...@@ -79,28 +79,28 @@ project setting under your project's **Settings > CI/CD > General pipelines sett ...@@ -79,28 +79,28 @@ project setting under your project's **Settings > CI/CD > General pipelines sett
If **Public pipelines** is enabled (default): If **Public pipelines** is enabled (default):
- for **public** projects, anyone can view the pipelines and access the job details - For **public** projects, anyone can view the pipelines and access the job details
(output logs and artifacts) (output logs and artifacts).
- for **internal** projects, any logged in user can view the pipelines - For **internal** projects, any logged in user can view the pipelines
and access the job details and access the job details
(output logs and artifacts) (output logs and artifacts).
- for **private** projects, any member (guest or higher) can view the pipelines - For **private** projects, any member (guest or higher) can view the pipelines
and access the job details and access the job details
(output logs and artifacts) (output logs and artifacts).
If **Public pipelines** is disabled: If **Public pipelines** is disabled:
- for **public** projects, anyone can view the pipelines, but only members - For **public** projects, anyone can view the pipelines, but only members
(reporter or higher) can access the job details (output logs and artifacts) (reporter or higher) can access the job details (output logs and artifacts).
- for **internal** projects, any logged in user can view the pipelines, - For **internal** projects, any logged in user can view the pipelines.
but only members (reporter or higher) can access the job details (output logs However, only members (reporter or higher) can access the job details (output logs
and artifacts) and artifacts).
- for **private** projects, only members (reporter or higher) - For **private** projects, only members (reporter or higher)
can view the pipelines and access the job details (output logs and artifacts) can view the pipelines and access the job details (output logs and artifacts).
## Auto-cancel pending pipelines ## Auto-cancel pending pipelines
> [Introduced][ce-9362] in GitLab 9.1. > [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9362) in GitLab 9.1.
If you want to auto-cancel all pending non-HEAD pipelines on branch, when 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), new pipeline will be created (after your git push or manually from UI),
...@@ -132,19 +132,19 @@ Depending on the status of your job, a badge can have the following values: ...@@ -132,19 +132,19 @@ Depending on the status of your job, a badge can have the following values:
You can access a pipeline status badge image using the following link: You can access a pipeline status badge image using the following link:
``` ```text
https://example.gitlab.com/<namespace>/<project>/badges/<branch>/build.svg https://example.gitlab.com/<namespace>/<project>/badges/<branch>/build.svg
``` ```
### Test coverage report badge ### Test coverage report badge
GitLab makes it possible to define the regular expression for [coverage report], GitLab makes it possible to define the regular expression for [coverage report](#test-coverage-parsing),
that each job log will be matched against. This means that each job in the that each job log will be matched against. This means that each job in the
pipeline can have the test coverage percentage value defined. pipeline can have the test coverage percentage value defined.
The test coverage badge can be accessed using following link: The test coverage badge can be accessed using following link:
``` ```text
https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg
``` ```
...@@ -163,7 +163,7 @@ Pipeline badges can be rendered in different styles by adding the `style=style_n ...@@ -163,7 +163,7 @@ Pipeline badges can be rendered in different styles by adding the `style=style_n
#### Flat (default) #### Flat (default)
``` ```text
https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg?style=flat https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg?style=flat
``` ```
...@@ -171,7 +171,9 @@ https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg?st ...@@ -171,7 +171,9 @@ https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg?st
#### Flat square #### Flat square
``` > [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/issues/30120) in GitLab 11.8.
```text
https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg?style=flat-square https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg?style=flat-square
``` ```
...@@ -180,10 +182,3 @@ https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg?st ...@@ -180,10 +182,3 @@ https://example.gitlab.com/<namespace>/<project>/badges/<branch>/coverage.svg?st
## Environment Variables ## Environment Variables
[Environment variables](../../../ci/variables/README.html#variables) can be set in an environment to be available to a runner. [Environment variables](../../../ci/variables/README.html#variables) can be set in an environment to be available to a runner.
[var]: ../../../ci/yaml/README.md#git-strategy
[coverage report]: #test-coverage-parsing
[timeout overriding]: ../../../ci/runners/README.html#setting-maximum-job-timeout-for-a-runner
[ce-9362]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/9362
[ce-12509]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/12509
[ce-17221]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/17221
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment