pipelines.md 20.9 KB
Newer Older
M
Marcia Ramos 已提交
1 2 3 4
---
type: reference
---

5
# Creating and using CI/CD pipelines
6

7
> Introduced in GitLab 8.8.
8

9 10 11 12 13
NOTE: **Tip:**
Watch our
["Mastering continuous software development"](https://about.gitlab.com/webcast/mastering-ci-cd/)
webcast to see a comprehensive demo of GitLab CI/CD pipeline.

14 15
## Introduction

16
Pipelines are the top-level component of continuous integration, delivery, and deployment.
17 18 19 20

Pipelines comprise:

- Jobs that define what to run. For example, code compilation or test runs.
21
- Stages that define when and how to run. For example, that tests run only after code compilation.
22

23
Multiple jobs in the same stage are executed by [Runners](runners/README.md) in parallel, if there are enough concurrent [Runners](runners/README.md).
24

25
If all the jobs in a stage:
26 27

- Succeed, the pipeline moves on to the next stage.
28
- Fail, the next stage is not (usually) executed and the pipeline ends early.
29

30
NOTE: **Note:**
31
If you have a [mirrored repository that GitLab pulls from](../user/project/repository/repository_mirroring.md#pulling-from-a-remote-repository-starter),
32 33 34
you may need to enable pipeline triggering in your project's
**Settings > Repository > Pull from a remote repository > Trigger pipelines for mirror updates**.

35
### Simple pipeline example
36

37
As an example, imagine a pipeline consisting of four stages, executed in the following order:
38

39 40 41 42
- `build`, with a job called `compile`.
- `test`, with two jobs called `test` and `test2`.
- `staging`, with a job called `deploy-to-stage`.
- `production`, with a job called `deploy-to-prod`.
43

44
## Visualizing pipelines
45

46
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/5742) in GitLab 8.11.
47

48
Pipelines can be complex structures with many sequential and parallel jobs.
M
Mark Pundsack 已提交
49

50
To make it easier to understand the flow of a pipeline, GitLab has pipeline graphs for viewing pipelines
51
and their statuses.
M
Mark Pundsack 已提交
52

53 54
Pipeline graphs can be displayed in two different ways, depending on the page you
access the graph from.
M
Mark Pundsack 已提交
55

56
NOTE: **Note:**
57
GitLab capitalizes the stages' names when shown in the pipeline graphs (below).
M
Mark Pundsack 已提交
58

59
### Regular pipeline graphs
M
Mark Pundsack 已提交
60

61
Regular pipeline graphs show the names of the jobs of each stage. Regular pipeline graphs can
62
be found when you are on a [single pipeline page](#accessing-pipelines). For example:
M
Mark Pundsack 已提交
63

64
![Pipelines example](img/pipelines.png)
M
Mark Pundsack 已提交
65

66
### Pipeline mini graphs
M
Mark Pundsack 已提交
67

68 69
Pipeline mini graphs take less space and can tell you at a
quick glance if all jobs passed or something failed. The pipeline mini graph can
70
be found when you navigate to:
71

72 73 74
- The pipelines index page.
- A single commit page.
- A merge request page.
75

76 77 78
Pipeline mini graphs allow you to see all related jobs for a single commit and the net result
of each stage of your pipeline. This allows you to quickly see what failed and
fix it.
79

80
Stages in pipeline mini graphs are collapsible. Hover your mouse over them and click to expand their jobs.
81

82 83 84
| Mini graph                                                   | Mini graph expanded                                            |
|:-------------------------------------------------------------|:---------------------------------------------------------------|
| ![Pipelines mini graph](img/pipelines_mini_graph_simple.png) | ![Pipelines mini graph extended](img/pipelines_mini_graph.png) |
85

86
### Job ordering in pipeline graphs
87

88
Job ordering depends on the type of pipeline graph. For [regular pipeline graphs](#regular-pipeline-graphs), jobs are sorted by name.
89

90
For [pipeline mini graphs](#pipeline-mini-graphs) ([introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/9760)
91
in GitLab 9.0), jobs are sorted by severity and then by name.
92

93
The order of severity is:
94

95 96 97 98 99 100 101 102 103 104
- failed
- warning
- pending
- running
- manual
- scheduled
- canceled
- success
- skipped
- created
105

106
For example:
107

108
![Pipeline mini graph sorting](img/pipelines_mini_graph_sorting.png)
109

110
### How pipeline duration is calculated
111

112
Total running time for a given pipeline excludes retries and pending
113
(queued) time.
114

115
Each job is represented as a `Period`, which consists of:
116

117 118
- `Period#first` (when the job started).
- `Period#last` (when the job finished).
119

120
A simple example is:
121

122 123 124
- A (1, 3)
- B (2, 4)
- C (6, 7)
125

126
In the example:
127

128 129 130
- A begins at 1 and ends at 3.
- B begins at 2 and ends at 4.
- C begins at 6 and ends at 7.
131

132
Visually, it can be viewed as:
133

134 135 136 137 138 139
```text
0  1  2  3  4  5  6  7
   AAAAAAA
      BBBBBBB
                  CCCC
```
140

141
The union of A, B, and C is (1, 4) and (6, 7). Therefore, the total running time is:
142

143 144 145
```text
(4 - 1) + (7 - 6) => 4
```
146

147 148 149 150 151 152 153
### How pipeline quotas are used

Each user has a personal pipeline quota that tracks the usage of shared runners in all personal projects.
Each group has a [usage quota](../subscriptions/index.md#ci-pipeline-minutes) that tracks the usage of shared runners for all projects created within the group.

When a pipeline is triggered, regardless of who triggered it, the pipeline quota for the project owner's [namespace](../user/group/index.md#namespaces) is used. In this case, the namespace can be the user or group that owns the project.

E
Evan Read 已提交
154
### Expanding and collapsing job log sections
155

156
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/issues/14664) in GitLab
157 158
> 12.0.

159 160
Job logs are divided into sections that can be collapsed or expanded. Each section will display
the duration.
161 162 163

In the following example:

164 165
- Two sections are collapsed and can be expanded.
- Three sections are expanded and can be collapsed.
166

167
![Collapsible sections](img/collapsible_log_v12_6.png)
168

169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
#### Custom collapsible sections

You can create collapsible sections in job logs by manually outputting special codes
that GitLab will use to determine what sections to collapse:

- Section start marker: `section_start:UNIX_TIMESTAMP:SECTION_NAME\r\e[0K` + `TEXT_OF_SECTION_HEADER`
- Section end marker: `section_end:UNIX_TIMESTAMP:SECTION_NAME\r\e[0K`

You must add these codes to the script section of the CI configuration. For example,
using `echo`:

```yaml
job1:
  script:
    - echo -e "section_start:`date +%s`:my_first_section\r\e[0KHeader of the 1st collapsible section"
    - echo 'this line should be hidden when collapsed'
    - echo -e "section_end:`date +%s`:my_first_section\r\e[0K"
```

In the example above:

- `date +%s`: The Unix timestamp (for example `1560896352`).
- `my_first_section`: The name given to the section.
- `\r\e[0K`: Prevents the section markers from displaying in the rendered (colored)
  job log, but they are displayed in the raw job log. To see them, in the top right
  of the job log, click **{doc-text}** (**Show complete raw**).
  - `\r`: carriage return.
  - `\e[0K`: clear line ANSI escape code.

Sample raw job log:

```plaintext
section_start:1560896352:my_first_section\r\e[0KHeader of the 1st collapsible section
this line should be hidden when collapsed
section_end:1560896353:my_first_section\r\e[0K
```

206
## Configuring pipelines
207

208
Pipelines, and their component jobs and stages, are defined in the [`.gitlab-ci.yml`](yaml/README.md) file for each project.
209

210
In particular:
211

212 213
- Jobs are the [basic configuration](yaml/README.html#introduction) component.
- Stages are defined using the [`stages`](yaml/README.html#stages) keyword.
214

215
For all available configuration options, see the [GitLab CI/CD Pipeline Configuration Reference](yaml/README.md).
216

217
### Settings and schedules
218

219 220
In addition to configuring jobs through `.gitlab-ci.yml`, additional configuration options are available
through the GitLab UI:
221

222 223
- Pipeline settings for each project. For more information, see [Pipeline settings](../user/project/pipelines/settings.md).
- Schedules for pipelines. For more information, see [Pipeline schedules](../user/project/pipelines/schedules.md).
224

225
### Grouping jobs
226

227
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/6242) in GitLab 8.12.
228

229 230
If you have many similar jobs, your [pipeline graph](#visualizing-pipelines) becomes long and hard
to read.
231

232
For that reason, similar jobs can automatically be grouped together.
233 234
If the job names are formatted in certain ways, they will be collapsed into
a single group in regular pipeline graphs (not the mini graphs).
235

236 237 238 239 240 241
You'll know when a pipeline has grouped jobs if you don't see the retry or
cancel button inside them. Hovering over them will show the number of grouped
jobs. Click to expand them.

![Grouped pipelines](img/pipelines_grouped.png)

242 243 244
#### Configuring grouping

In the pipeline [configuration file](yaml/README.md), job names must include two numbers separated with one of
245 246
the following (you can even use them interchangeably):

247 248 249 250 251
- A space.
- A slash (`/`).
- A colon (`:`).

NOTE: **Note:**
252
More specifically, it uses [this](https://gitlab.com/gitlab-org/gitlab/blob/2f3dc314f42dbd79813e6251792853bc231e69dd/app/models/commit_status.rb#L99) regular expression: `\d+[\s:\/\\]+\d+\s*`.
253

254
#### How grouping works
255 256 257 258 259 260

The jobs will be ordered by comparing those two numbers from left to right. You
usually want the first to be the index and the second the total.

For example, the following jobs will be grouped under a job named `test`:

261 262 263
- `test 0 3`
- `test 1 3`
- `test 2 3`
264 265 266

The following jobs will be grouped under a job named `test ruby`:

267 268
- `test 1:2 ruby`
- `test 2:2 ruby`
269 270 271

The following jobs will be grouped under a job named `test ruby` as well:

272 273 274
- `1/3 test ruby`
- `2/3 test ruby`
- `3/3 test ruby`
275

276
### Pipelines for merge requests
277

278 279
GitLab supports configuring pipelines that run only for merge requests. For more information, see
[Pipelines for merge requests](merge_request_pipelines/index.md).
280

281
### Badges
282

283
Pipeline status and test coverage report badges are available and configurable for each project.
284

285
For information on adding pipeline badges to projects, see [Pipeline badges](../user/project/pipelines/settings.md#pipeline-badges).
286

287
## Multi-project pipelines **(PREMIUM)**
W
Winnie Hellmann 已提交
288

289
Pipelines for different projects can be combined and visualized together.
W
Winnie Hellmann 已提交
290

M
Marcel Amirault 已提交
291
For more information, see [Multi-project pipelines](multi_project_pipelines.md).
W
Winnie Hellmann 已提交
292

293 294 295 296 297 298 299
## Parent-child pipelines

Complex pipelines can be broken down into one parent pipeline that can trigger
multiple child sub-pipelines, which all run in the same project and with the same SHA.

For more information, see [Parent-Child pipelines](parent_child_pipelines.md).

300
## Working with pipelines
W
Winnie Hellmann 已提交
301

302
In general, pipelines are executed automatically and require no intervention once created.
303

304
However, there are instances where you'll need to interact with pipelines. These are documented below.
305

306
### Manually executing pipelines
307

308
Pipelines can be manually executed, with predefined or manually-specified [variables](variables/README.md).
309

310 311
You might do this if the results of a pipeline (for example, a code build) is required outside the normal
operation of the pipeline.
312

313
To execute a pipeline manually:
314

315 316 317 318 319 320
1. Navigate to your project's **CI/CD > Pipelines**.
1. Click on the **Run Pipeline** button.
1. On the **Run Pipeline** page:
    1. Select the branch to run the pipeline for in the **Create for** field.
    1. Enter any [environment variables](variables/README.md) required for the pipeline run.
    1. Click the **Create pipeline** button.
321

322
The pipeline will execute the jobs as configured.
323

324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
#### Using a query string

> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/24146) in GitLab 12.5.

Variables on the **Run Pipeline** page can be pre-populated by passing variable keys and values
in a query string appended to the `pipelines/new` URL. The format is:

```plaintext
.../pipelines/new?ref=<branch>&var[<variable_key>]=<value>&file_var[<file_key>]=<value>
```

The following parameters are supported:

- `ref`: specify the branch to populate the **Run for** field with.
- `var`: specify a `Variable` variable.
- `file_var`: specify a `File` variable.

For each `var` or `file_var`, a key and value are required.

For example, the query string
`.../pipelines/new?ref=my_branch&var[foo]=bar&file_var[file_foo]=file_bar` will pre-populate the
**Run Pipeline** page as follows:

- **Run for** field: `my_branch`.
- **Variables** section:
  - Variable:
    - Key: `foo`
    - Value: `bar`
  - File:
    - Key: `file_foo`
    - Value: `file_bar`

356
### Accessing pipelines
L
Lin Jen-Shin 已提交
357

358
You can find the current and historical pipeline runs under your project's
359 360
**CI/CD > Pipelines** page. You can also access pipelines for a merge request by navigating
to its **Pipelines** tab.
L
Lin Jen-Shin 已提交
361

362
![Pipelines index page](img/pipelines_index.png)
L
Lin Jen-Shin 已提交
363

364 365 366
Clicking on a pipeline will bring you to the **Pipeline Details** page and show
the jobs that were run for that pipeline. From here you can cancel a running pipeline,
retry jobs on a failed pipeline, or [delete a pipeline](#deleting-a-single-pipeline).
L
Lin Jen-Shin 已提交
367

368
### Accessing individual jobs
L
Lin Jen-Shin 已提交
369

370
When you access a pipeline, you can see the related jobs for that pipeline.
L
Lin Jen-Shin 已提交
371

372
Clicking on an individual job will show you its job log, and allow you to:
L
Lin Jen-Shin 已提交
373

374 375
- Cancel the job.
- Retry the job.
376
- Erase the job log.
377 378 379

### Seeing the failure reason for jobs

380
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/17782) in GitLab 10.7.
381 382 383 384 385 386 387 388

When a pipeline fails or is allowed to fail, there are several places where you
can quickly check the reason it failed:

- In the pipeline graph, on the pipeline detail view.
- In the pipeline widgets, in the merge requests and commit pages.
- In the job views, in the global and detailed views of a job.

389
In each place, if you hover over the failed job you can see the reason it failed.
390 391 392

![Pipeline detail](img/job_failure_reason.png)

393
From [GitLab 10.8](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/17814),
394 395 396 397
you can also see the reason it failed on the Job detail page.

### Manual actions from pipeline graphs

398
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/7931) in GitLab 8.15.
399 400 401 402 403 404 405

Manual actions, configured using the [`when:manual`](yaml/README.md#whenmanual) parameter,
allow you to require manual interaction before moving forward in the pipeline.

You can do this straight from the pipeline graph. Just click on the play button
to execute that particular job.

406
For example, your pipeline start automatically, but require manual action to
407
[deploy to production](environments.md#configuring-manual-deployments). In the example below, the `production`
408 409 410 411
stage has a job with a manual action.

![Pipelines example](img/pipelines.png)

M
Matija Čupić 已提交
412 413
### Specifying variables when running manual jobs

414
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/30485) in GitLab 12.2.
M
Matija Čupić 已提交
415 416 417 418 419 420 421 422 423 424 425

When running manual jobs you can supply additional job specific variables.

You can do this from the job page of the manual job you want to run with
additional variables.

This is useful when you want to alter the execution of a job by using
environment variables.

![Manual job variables](img/manual_job_variables.png)

426 427
### Delay a job in a pipeline graph

428
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/21767) in GitLab 11.4.
L
Lin Jen-Shin 已提交
429

F
fschl 已提交
430
When you do not want to run a job immediately, you can use the [`when:delayed`](yaml/README.md#whendelayed) parameter to
431
delay a job's execution for a certain period.
432

433 434
This is especially useful for timed incremental rollout where new code is rolled out gradually.

435
For example, if you start rolling out new code and:
436

437 438
- Users do not experience trouble, GitLab can automatically complete the deployment from 0% to 100%.
- Users experience trouble with the new code, you can stop the timed incremental rollout by canceling the pipeline
439
  and [rolling](environments.md#retrying-and-rolling-back) back to the last stable version.
440 441 442 443 444 445 446 447 448 449 450 451

![Pipelines example](img/pipeline_incremental_rollout.png)

### Using the API

GitLab provides API endpoints to:

- Perform basic functions. For more information, see [Pipelines API](../api/pipelines.md).
- Maintain pipeline schedules. For more information, see [Pipeline schedules API](../api/pipeline_schedules.md).
- Trigger pipeline runs. For more information, see:
  - [Triggering pipelines through the API](triggers/README.md).
  - [Pipeline triggers API](../api/pipeline_triggers.md).
452

M
Marcel Amirault 已提交
453
### Start multiple manual actions in a stage
454

455
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/27188) in GitLab 11.11.
456 457 458 459 460 461 462 463 464 465

Multiple manual actions in a single stage can be started at the same time using the "Play all manual" button.
Once the user clicks this button, each individual manual action will be triggered and refreshed
to an updated status.

This functionality is only available:

- For users with at least Developer access.
- If the the stage contains [manual actions](#manual-actions-from-pipeline-graphs).

466 467 468 469 470 471 472 473 474 475 476 477 478 479
### Deleting a single pipeline

> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/24851) in GitLab 12.7.

Users with [owner permissions](../user/permissions.md) in a project can delete a pipeline
by clicking on the pipeline in the **CI/CD > Pipelines** to get to the **Pipeline Details**
page, then using the **Delete** button.

![Pipeline Delete Button](img/pipeline-delete.png)

CAUTION: **Warning:**
Deleting a pipeline will expire all pipeline caches, and delete all related objects,
such as builds, logs, artifacts, and triggers. **This action cannot be undone.**

480 481
## Most Recent Pipeline

482 483
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/issues/50499) in GitLab 12.3.

484 485
There's a link to the latest pipeline for the last commit of a given branch at `/project/pipelines/[branch]/latest`. Also, `/project/pipelines/latest` will redirect you to the latest pipeline for the last commit on the project's default branch.

486 487 488 489 490 491 492 493
## Security on protected branches

A strict security model is enforced when pipelines are executed on
[protected branches](../user/project/protected_branches.md).

The following actions are allowed on protected branches only if the user is
[allowed to merge or push](../user/project/protected_branches.md#using-the-allowed-to-merge-and-allowed-to-push-settings)
on that specific branch:
494

495
- Run manual pipelines (using the [Web UI](#manually-executing-pipelines) or pipelines API).
496 497 498
- Run scheduled pipelines.
- Run pipelines using triggers.
- Trigger manual actions on existing pipelines.
499
- Retry or cancel existing jobs (using the Web UI or pipelines API).
500

501
**Variables** marked as **protected** are accessible only to jobs that
502
run on protected branches, preventing untrusted users getting unintended access to
503 504 505 506 507 508 509
sensitive information like deployment credentials and tokens.

**Runners** marked as **protected** can run jobs only on protected
branches, avoiding untrusted code to be executed on the protected runner and
preserving deployment keys and other credentials from being unintentionally
accessed. In order to ensure that jobs intended to be executed on protected
runners will not use regular runners, they must be tagged accordingly.
510 511 512

## Persistent pipeline refs

513
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/17043) in GitLab 12.4.
514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538

Previously, you'd have encountered unexpected pipeline failures when you force-pushed
a branch to its remote repository. To illustrate the problem, suppose you've had the current workflow:

1. A user creates a feature branch named `example` and pushes it to a remote repository.
1. A new pipeline starts running on the `example` branch.
1. A user rebases the `example` branch on the latest `master` branch and force-pushes it to its remote repository.
1. A new pipeline starts running on the `example` branch again, however,
   the previous pipeline (2) fails because of `fatal: reference is not a tree:` error.

This is because the previous pipeline cannot find a checkout-SHA (which associated with the pipeline record)
from the `example` branch that the commit history has already been overwritten by the force-push.
Similarly, [Pipelines for merged results](merge_request_pipelines/pipelines_for_merged_results/index.md)
might have failed intermittently due to [the same reason](merge_request_pipelines/pipelines_for_merged_results/index.md#intermittently-pipelines-fail-by-fatal-reference-is-not-a-tree-error).

As of GitLab 12.4, we've improved this behavior by persisting pipeline refs exclusively.
To illustrate its life cycle:

1. A pipeline is created on a feature branch named `example`.
1. A persistent pipeline ref is created at `refs/pipelines/<pipeline-id>`,
   which retains the checkout-SHA of the associated pipeline record.
   This persistent ref stays intact during the pipeline execution,
   even if the commit history of the `example` branch has been overwritten by force-push.
1. GitLab Runner fetches the persistent pipeline ref and gets source code from the checkout-SHA.
1. When the pipeline finished, its persistent ref is cleaned up in a background process.
539 540 541 542 543 544 545 546 547 548 549 550

NOTE: **NOTE**: At this moment, this feature is on by default and can be manually disabled
by disabling `depend_on_persistent_pipeline_ref` feature flag. If you're interested in
manually disabling this behavior, please ask the administrator
to execute the following commands in rails console.

```shell
> sudo gitlab-rails console                                        # Login to Rails console of GitLab instance.
> project = Project.find_by_full_path('namespace/project-name')    # Get the project instance.
> Feature.disable(:depend_on_persistent_pipeline_ref, project)     # Disable the feature flag for specific project
> Feature.disable(:depend_on_persistent_pipeline_ref)              # Disable the feature flag system-wide
```