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

440 lines
19 KiB
Markdown
Raw Normal View History

2020-04-08 14:13:33 +05:30
---
2020-06-23 00:09:42 +05:30
stage: Verify
2021-11-11 11:23:49 +05:30
group: Pipeline Authoring
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/ci/pipelines.html'
type: reference
---
2021-04-17 20:07:23 +05:30
# CI/CD pipelines **(FREE)**
2020-04-08 14:13:33 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2020-04-22 19:07:51 +05:30
Watch the
2020-04-08 14:13:33 +05:30
["Mastering continuous software development"](https://about.gitlab.com/webcast/mastering-ci-cd/)
2020-04-22 19:07:51 +05:30
webcast to see a comprehensive demo of a GitLab CI/CD pipeline.
2020-04-08 14:13:33 +05:30
Pipelines are the top-level component of continuous integration, delivery, and deployment.
Pipelines comprise:
2020-04-22 19:07:51 +05:30
- Jobs, which define *what* to do. For example, jobs that compile or test code.
- Stages, which define *when* to run the jobs. For example, stages that run tests after stages that compile the code.
2021-09-30 23:02:18 +05:30
Jobs are executed by [runners](../runners/index.md). Multiple jobs in the same stage are executed in parallel,
2020-04-22 19:07:51 +05:30
if there are enough concurrent runners.
If *all* jobs in a stage succeed, the pipeline moves on to the next stage.
If *any* job in a stage fails, the next stage is not (usually) executed and the pipeline ends early.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
In general, pipelines are executed automatically and require no intervention once created. However, there are
also times when you can manually interact with a pipeline.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
A typical pipeline might consist of four stages, executed in the following order:
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
- A `build` stage, with a job called `compile`.
- A `test` stage, with two jobs called `test1` and `test2`.
- A `staging` stage, with a job called `deploy-to-stage`.
- A `production` stage, with a job called `deploy-to-prod`.
2020-04-08 14:13:33 +05:30
2021-02-22 17:27:13 +05:30
NOTE:
2021-11-18 22:05:49 +05:30
If you have a [mirrored repository that GitLab pulls from](../../user/project/repository/mirror/pull.md),
2020-04-08 14:13:33 +05:30
you may need to enable pipeline triggering in your project's
**Settings > Repository > Pull from a remote repository > Trigger pipelines for mirror updates**.
2020-04-22 19:07:51 +05:30
## Types of pipelines
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
Pipelines can be configured in many different ways:
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
- [Basic pipelines](pipeline_architectures.md#basic-pipelines) run everything in each stage concurrently,
followed by the next stage.
- [Directed Acyclic Graph Pipeline (DAG) pipelines](../directed_acyclic_graph/index.md) are based on relationships
between jobs and can run more quickly than basic pipelines.
2021-09-30 23:02:18 +05:30
- [Multi-project pipelines](multi_project_pipelines.md) combine pipelines for different projects together.
- [Parent-Child pipelines](parent_child_pipelines.md) break down complex pipelines
2020-04-22 19:07:51 +05:30
into one parent pipeline that can trigger multiple child sub-pipelines, which all
2021-10-27 15:23:28 +05:30
run in the same project and with the same SHA. This pipeline architecture is commonly used for mono-repos.
2021-09-30 23:02:18 +05:30
- [Pipelines for Merge Requests](../pipelines/merge_request_pipelines.md) run for merge
2020-04-22 19:07:51 +05:30
requests only (rather than for every commit).
2021-09-30 23:02:18 +05:30
- [Pipelines for Merged Results](../pipelines/pipelines_for_merged_results.md)
2020-04-22 19:07:51 +05:30
are merge request pipelines that act as though the changes from the source branch have
already been merged into the target branch.
2021-09-30 23:02:18 +05:30
- [Merge Trains](../pipelines/merge_trains.md)
2020-04-22 19:07:51 +05:30
use pipelines for merged results to queue merges one after the other.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
## Configure a pipeline
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
Pipelines and their component jobs and stages are defined in the CI/CD pipeline configuration file for each project.
2020-04-08 14:13:33 +05:30
2021-01-29 00:20:46 +05:30
- [Jobs](../jobs/index.md) are the basic configuration component.
2021-09-30 23:02:18 +05:30
- Stages are defined by using the [`stages`](../yaml/index.md#stages) keyword.
2020-04-08 14:13:33 +05:30
2021-09-30 23:02:18 +05:30
For a list of configuration options in the CI pipeline file, see the [GitLab CI/CD Pipeline Configuration Reference](../yaml/index.md).
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
You can also configure specific aspects of your pipelines through the GitLab UI. For example:
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
- [Pipeline settings](settings.md) for each project.
- [Pipeline schedules](schedules.md).
2021-09-30 23:02:18 +05:30
- [Custom CI/CD variables](../variables/index.md#custom-cicd-variables).
2020-04-08 14:13:33 +05:30
2021-12-11 22:18:48 +05:30
### Ref specs for runners
2021-01-29 00:20:46 +05:30
When a runner picks a pipeline job, GitLab provides that job's metadata. This includes the [Git refspecs](https://git-scm.com/book/en/v2/Git-Internals-The-Refspec),
which indicate which ref (branch, tag, and so on) and commit (SHA1) are checked out from your
project repository.
This table lists the refspecs injected for each pipeline type:
| Pipeline type | Refspecs |
|--------------- |---------------------------------------- |
2021-12-11 22:18:48 +05:30
| pipeline for branches | `+<sha>:refs/pipelines/<id>` and `+refs/heads/<name>:refs/remotes/origin/<name>` |
| pipeline for tags | `+<sha>:refs/pipelines/<id>` and `+refs/tags/<name>:refs/tags/<name>` |
| [pipeline for merge requests](../pipelines/merge_request_pipelines.md) | `+<sha>:refs/pipelines/<id>` |
2021-01-29 00:20:46 +05:30
The refs `refs/heads/<name>` and `refs/tags/<name>` exist in your
project repository. GitLab generates the special ref `refs/pipelines/<id>` during a
running pipeline job. This ref can be created even after the associated branch or tag has been
2021-10-27 15:23:28 +05:30
deleted. It's therefore useful in some features such as [automatically stopping an environment](../environments/index.md#stop-an-environment),
2021-09-30 23:02:18 +05:30
and [merge trains](../pipelines/merge_trains.md)
2021-01-29 00:20:46 +05:30
that might run pipelines after branch deletion.
2020-04-22 19:07:51 +05:30
### View pipelines
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
You can find the current and historical pipeline runs under your project's
**CI/CD > Pipelines** page. You can also access pipelines for a merge request by navigating
to its **Pipelines** tab.
2020-04-08 14:13:33 +05:30
2020-05-24 23:13:21 +05:30
![Pipelines index page](img/pipelines_index_v13_0.png)
2020-04-08 14:13:33 +05:30
2020-10-24 23:57:45 +05:30
Click a pipeline to open the **Pipeline Details** page and show
2020-04-22 19:07:51 +05:30
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](#delete-a-pipeline).
2020-04-08 14:13:33 +05:30
2020-06-23 00:09:42 +05:30
[Starting in GitLab 12.3](https://gitlab.com/gitlab-org/gitlab-foss/-/issues/50499), a link to the
2020-04-22 19:07:51 +05:30
latest pipeline for the last commit of a given branch is available at `/project/pipelines/[branch]/latest`.
2020-10-24 23:57:45 +05:30
Also, `/project/pipelines/latest` redirects you to the latest pipeline for the last commit
2020-04-22 19:07:51 +05:30
on the project's default branch.
2020-04-08 14:13:33 +05:30
2020-05-24 23:13:21 +05:30
[Starting in GitLab 13.0](https://gitlab.com/gitlab-org/gitlab/-/issues/215367),
you can filter the pipeline list by:
- Trigger author
- Branch name
2021-01-03 14:25:43 +05:30
- Status ([GitLab 13.1 and later](https://gitlab.com/gitlab-org/gitlab/-/issues/217617))
- Tag ([GitLab 13.1 and later](https://gitlab.com/gitlab-org/gitlab/-/issues/217617))
2021-11-11 11:23:49 +05:30
- Source ([GitLab 14.3 and later](https://gitlab.com/gitlab-org/gitlab/-/issues/338347))
2020-05-24 23:13:21 +05:30
2021-10-27 15:23:28 +05:30
[Starting in GitLab 14.2](https://gitlab.com/gitlab-org/gitlab/-/issues/26621), you can change the
pipeline column to display the pipeline ID or the pipeline IID.
2021-12-11 22:18:48 +05:30
If you use VS Code to edit your GitLab CI/CD configuration, the
[GitLab Workflow VS Code extension](../../user/project/repository/vscode.md) helps you
[validate your configuration](https://marketplace.visualstudio.com/items?itemName=GitLab.gitlab-workflow#validate-gitlab-ci-configuration)
and [view your pipeline status](https://marketplace.visualstudio.com/items?itemName=GitLab.gitlab-workflow#information-about-your-branch-pipelines-mr-closing-issue).
2020-04-22 19:07:51 +05:30
### Run a pipeline manually
2020-04-08 14:13:33 +05:30
2021-09-30 23:02:18 +05:30
Pipelines can be manually executed, with predefined or manually-specified [variables](../variables/index.md).
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
You might do this if the results of a pipeline (for example, a code build) are required outside the normal
operation of the pipeline.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
To execute a pipeline manually:
2020-04-08 14:13:33 +05:30
2021-10-27 15:23:28 +05:30
1. On the top bar, select **Menu > Projects** and find your project.
1. On the left sidebar, select **CI/CD > Pipelines**.
1. Select **Run pipeline**.
1. In the **Run for branch name or tag** field, select the branch or tag to run the pipeline for.
1. Enter any [environment variables](../variables/index.md) required for the pipeline to run.
You can set specific variables to have their [values prefilled in the form](#prefill-variables-in-manual-pipelines).
1. Select **Run pipeline**.
2020-04-08 14:13:33 +05:30
2020-10-24 23:57:45 +05:30
The pipeline now executes the jobs as configured.
2020-04-08 14:13:33 +05:30
2021-03-11 19:13:27 +05:30
#### Prefill variables in manual pipelines
2021-11-18 22:05:49 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/30101) in GitLab 13.7.
2021-03-11 19:13:27 +05:30
2021-12-11 22:18:48 +05:30
You can use the [`value` and `description`](../yaml/index.md#variablesdescription)
2021-09-04 01:27:46 +05:30
keywords to define
2021-09-30 23:02:18 +05:30
[pipeline-level (global) variables](../variables/index.md#create-a-custom-cicd-variable-in-the-gitlab-ciyml-file)
2021-09-04 01:27:46 +05:30
that are prefilled when running a pipeline manually.
2021-03-11 19:13:27 +05:30
2021-09-04 01:27:46 +05:30
In pipelines triggered manually, the **Run pipelines** page displays all top-level variables
2021-03-11 19:13:27 +05:30
with a `description` and `value` defined in the `.gitlab-ci.yml` file. The values
can then be modified if needed, which overrides the value for that single pipeline run.
2021-12-11 22:18:48 +05:30
The description is displayed next to the variable. It can be used to explain what
2021-03-11 19:13:27 +05:30
the variable is used for, what the acceptable values are, and so on:
```yaml
variables:
DEPLOY_ENVIRONMENT:
value: "staging" # Deploy to staging by default
description: "The deployment target. Change this variable to 'canary' or 'production' if needed."
```
2021-09-04 01:27:46 +05:30
You cannot set job-level variables to be pre-filled when you run a pipeline manually.
2020-04-22 19:07:51 +05:30
### Run a pipeline by using a URL query string
2020-04-08 14:13:33 +05:30
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/24146) in GitLab 12.5.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
You can use a query string to pre-populate the **Run Pipeline** page. For example, the query string
2020-10-24 23:57:45 +05:30
`.../pipelines/new?ref=my_branch&var[foo]=bar&file_var[file_foo]=file_bar` pre-populates the
2020-04-22 19:07:51 +05:30
**Run Pipeline** page with:
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
- **Run for** field: `my_branch`.
- **Variables** section:
- Variable:
- Key: `foo`
- Value: `bar`
- File:
- Key: `file_foo`
- Value: `file_bar`
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
The format of the `pipelines/new` URL is:
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
```plaintext
.../pipelines/new?ref=<branch>&var[<variable_key>]=<value>&file_var[<file_key>]=<value>
```
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
The following parameters are supported:
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
- `ref`: specify the branch to populate the **Run for** field with.
- `var`: specify a `Variable` variable.
- `file_var`: specify a `File` variable.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
For each `var` or `file_var`, a key and value are required.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
### Add manual interaction to your pipeline
2020-04-08 14:13:33 +05:30
2021-10-27 15:23:28 +05:30
[Manual jobs](../jobs/job_control.md#create-a-job-that-must-be-run-manually),
2020-04-22 19:07:51 +05:30
allow you to require manual interaction before moving forward in the pipeline.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
You can do this straight from the pipeline graph. Just click the play button
to execute that particular job.
2020-04-08 14:13:33 +05:30
2021-11-11 11:23:49 +05:30
For example, your pipeline can start automatically, but require a manual action to
[deploy to production](../environments/index.md#configure-manual-deployments).
In the example below, the `production` stage has a job with a manual action:
2020-04-08 14:13:33 +05:30
2021-11-11 11:23:49 +05:30
![Pipelines example](img/manual_pipeline_v14_2.png)
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
#### Start multiple manual actions in a stage
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/27188) in GitLab 11.11.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
Multiple manual actions in a single stage can be started at the same time using the "Play all manual" button.
2021-01-29 00:20:46 +05:30
After you click this button, each individual manual action is triggered and refreshed
2020-04-22 19:07:51 +05:30
to an updated status.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
This functionality is only available:
2020-04-08 14:13:33 +05:30
2021-09-30 23:02:18 +05:30
- For users with at least the Developer role.
2020-04-22 19:07:51 +05:30
- If the stage contains [manual actions](#add-manual-interaction-to-your-pipeline).
2020-04-08 14:13:33 +05:30
2021-12-11 22:18:48 +05:30
### Skip a pipeline
To push a commit without triggering a pipeline, add `[ci skip]` or `[skip ci]`, using any
capitalization, to your commit message.
Alternatively, if you are using Git 2.10 or later, use the `ci.skip` [Git push option](../../user/project/push_options.md#push-options-for-gitlab-cicd).
The `ci.skip` push option does not skip merge request
pipelines.
2020-04-22 19:07:51 +05:30
### Delete a pipeline
2020-04-08 14:13:33 +05:30
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/24851) in GitLab 12.7.
2020-04-08 14:13:33 +05:30
2021-09-04 01:27:46 +05:30
Users with the [Owner role](../../user/permissions.md) in a project can delete a pipeline
2020-04-22 19:07:51 +05:30
by clicking on the pipeline in the **CI/CD > Pipelines** to get to the **Pipeline Details**
page, then using the **Delete** button.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
![Pipeline Delete Button](img/pipeline-delete.png)
2020-04-08 14:13:33 +05:30
2021-02-22 17:27:13 +05:30
WARNING:
2020-10-24 23:57:45 +05:30
Deleting a pipeline expires all pipeline caches, and deletes all related objects,
2020-04-22 19:07:51 +05:30
such as builds, logs, artifacts, and triggers. **This action cannot be undone.**
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
### Pipeline quotas
2020-04-08 14:13:33 +05:30
Each user has a personal pipeline quota that tracks the usage of shared runners in all personal projects.
2020-11-24 15:15:51 +05:30
Each group has a [usage quota](../../subscriptions/gitlab_com/index.md#ci-pipeline-minutes) that tracks the usage of shared runners for all projects created within the group.
2020-04-08 14:13:33 +05:30
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.
2020-04-22 19:07:51 +05:30
#### How pipeline duration is calculated
2020-04-08 14:13:33 +05:30
Total running time for a given pipeline excludes retries and pending
(queued) time.
Each job is represented as a `Period`, which consists of:
- `Period#first` (when the job started).
- `Period#last` (when the job finished).
A simple example is:
- A (1, 3)
- B (2, 4)
- C (6, 7)
In the example:
- A begins at 1 and ends at 3.
- B begins at 2 and ends at 4.
- C begins at 6 and ends at 7.
Visually, it can be viewed as:
2020-05-24 23:13:21 +05:30
```plaintext
2020-04-08 14:13:33 +05:30
0 1 2 3 4 5 6 7
AAAAAAA
BBBBBBB
CCCC
```
The union of A, B, and C is (1, 4) and (6, 7). Therefore, the total running time is:
2020-05-24 23:13:21 +05:30
```plaintext
2020-04-08 14:13:33 +05:30
(4 - 1) + (7 - 6) => 4
```
2021-02-22 17:27:13 +05:30
#### How pipeline quota usage is calculated
Pipeline quota usage is calculated as the sum of the duration of each individual job. This is slightly different to how pipeline _duration_ is [calculated](#how-pipeline-duration-is-calculated). Pipeline quota usage doesn't consider any overlap of jobs running in parallel.
For example, a pipeline consists of the following jobs:
- Job A takes 3 minutes.
- Job B takes 3 minutes.
- Job C takes 2 minutes.
The pipeline quota usage is the sum of each job's duration. In this example, 8 runner minutes would be used, calculated as: 3 + 3 + 2.
2020-04-22 19:07:51 +05:30
### Pipeline security on protected branches
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
A strict security model is enforced when pipelines are executed on
[protected branches](../../user/project/protected_branches.md).
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
The following actions are allowed on protected branches only if the user is
2021-09-30 23:02:18 +05:30
[allowed to merge or push](../../user/project/protected_branches.md)
2020-04-22 19:07:51 +05:30
on that specific branch:
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
- Run manual pipelines (using the [Web UI](#run-a-pipeline-manually) or [pipelines API](#pipelines-api)).
- Run scheduled pipelines.
- Run pipelines using triggers.
2020-10-24 23:57:45 +05:30
- Run on-demand DAST scan.
2020-04-22 19:07:51 +05:30
- Trigger manual actions on existing pipelines.
- Retry or cancel existing jobs (using the Web UI or pipelines API).
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
**Variables** marked as **protected** are accessible only to jobs that
run on protected branches, preventing untrusted users getting unintended access to
sensitive information like deployment credentials and tokens.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
**Runners** marked as **protected** can run jobs only on protected
branches, preventing untrusted code from executing 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
2020-10-24 23:57:45 +05:30
runners do not use regular runners, they must be tagged accordingly.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
## Visualize pipelines
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
Pipelines can be complex structures with many sequential and parallel jobs.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
To make it easier to understand the flow of a pipeline, GitLab has pipeline graphs for viewing pipelines
and their statuses.
2020-04-08 14:13:33 +05:30
2021-06-08 01:23:25 +05:30
Pipeline graphs can be displayed as a large graph or a miniature representation, depending on the page you
2020-04-22 19:07:51 +05:30
access the graph from.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
GitLab capitalizes the stages' names in the pipeline graphs.
2020-04-08 14:13:33 +05:30
2021-06-08 01:23:25 +05:30
### View full pipeline graph
2020-04-22 19:07:51 +05:30
2021-11-18 22:05:49 +05:30
> - Visualization improvements [introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/276949) in GitLab 13.11.
2021-04-29 21:17:54 +05:30
2021-06-08 01:23:25 +05:30
The [pipeline details page](#view-pipelines) displays the full pipeline graph of
all the jobs in the pipeline.
2020-04-08 14:13:33 +05:30
2021-06-08 01:23:25 +05:30
You can group the jobs by:
2021-11-11 11:23:49 +05:30
- Stage, which arranges jobs in the same stage together in the same column:
2021-06-08 01:23:25 +05:30
2021-11-11 11:23:49 +05:30
![jobs grouped by stage](img/pipelines_graph_stage_view_v14_2.png)
2021-06-08 01:23:25 +05:30
- [Job dependencies](#view-job-dependencies-in-the-pipeline-graph), which arranges
2021-09-30 23:02:18 +05:30
jobs based on their [`needs`](../yaml/index.md#needs) dependencies.
2020-04-08 14:13:33 +05:30
2021-09-30 23:02:18 +05:30
[Multi-project pipeline graphs](multi_project_pipelines.md#multi-project-pipeline-visualization) help
2020-04-22 19:07:51 +05:30
you visualize the entire pipeline, including all cross-project inter-dependencies. **(PREMIUM)**
2020-04-08 14:13:33 +05:30
2021-06-08 01:23:25 +05:30
### View job dependencies in the pipeline graph
> - [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/298973) in GitLab 13.12.
2021-11-11 11:23:49 +05:30
> - [Enabled by default](https://gitlab.com/gitlab-org/gitlab/-/issues/328538) in GitLab 14.0.
2021-10-27 15:23:28 +05:30
> - [Feature flag removed](https://gitlab.com/gitlab-org/gitlab/-/issues/328538) in GitLab 14.2.
2021-06-08 01:23:25 +05:30
2021-09-30 23:02:18 +05:30
You can arrange jobs in the pipeline graph based on their [`needs`](../yaml/index.md#needs)
2021-06-08 01:23:25 +05:30
dependencies.
Jobs in the leftmost column run first, and jobs that depend on them are grouped in the next columns.
2021-11-11 11:23:49 +05:30
For example, `test-job1` depends only on jobs in the first column, so it displays
in the second column from the left. `deploy-job1` depends on jobs in both the first
2021-06-08 01:23:25 +05:30
and second column and displays in the third column:
![jobs grouped by needs dependency](img/pipelines_graph_dependency_view_v13_12.png)
To add lines that show the `needs` relationships between jobs, select the **Show dependencies** toggle.
These lines are similar to the [needs visualization](../directed_acyclic_graph/index.md#needs-visualization):
![jobs grouped by needs dependency with lines displayed](img/pipelines_graph_dependency_view_links_v13_12.png)
To see the full `needs` dependency tree for a job, hover over it:
![single job dependency tree highlighted](img/pipelines_graph_dependency_view_hover_v13_12.png)
2020-04-22 19:07:51 +05:30
### Pipeline mini graphs
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
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
2021-10-27 15:23:28 +05:30
be found when you go to:
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
- The pipelines index page.
- A single commit page.
- A merge request page.
2021-12-11 22:18:48 +05:30
- The [pipeline editor](../pipeline_editor/index.md), [in GitLab 14.5](https://gitlab.com/gitlab-org/gitlab/-/issues/337514) and later.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
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.
2020-04-08 14:13:33 +05:30
2021-06-08 01:23:25 +05:30
Pipeline mini graphs only display jobs by stage.
2020-04-22 19:07:51 +05:30
Stages in pipeline mini graphs are collapsible. Hover your mouse over them and click to expand their jobs.
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
| Mini graph | Mini graph expanded |
|:-------------------------------------------------------------|:---------------------------------------------------------------|
| ![Pipelines mini graph](img/pipelines_mini_graph_simple.png) | ![Pipelines mini graph extended](img/pipelines_mini_graph.png) |
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
### Pipeline success and duration charts
2020-04-08 14:13:33 +05:30
2021-03-08 18:12:59 +05:30
Pipeline analytics are available on the [**CI/CD Analytics** page](../../user/analytics/ci_cd_analytics.md#pipeline-success-and-duration-charts).
2020-04-08 14:13:33 +05:30
2020-04-22 19:07:51 +05:30
### Pipeline badges
Pipeline status and test coverage report badges are available and configurable for each project.
For information on adding pipeline badges to projects, see [Pipeline badges](settings.md#pipeline-badges).
## Pipelines API
2020-04-08 14:13:33 +05:30
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:
2021-09-30 23:02:18 +05:30
- [Triggering pipelines through the API](../triggers/index.md).
2020-04-08 14:13:33 +05:30
- [Pipeline triggers API](../../api/pipeline_triggers.md).