CI/CD pipelines | GitLab (2024)

  • Types of pipelines
  • Configure a pipeline
    • Run a pipeline manually
      • Prefill variables in manual pipelines
      • Configure a list of selectable prefilled variable values
    • Run a pipeline by using a URL query string
    • Add manual interaction to your pipeline
      • Start all manual jobs in a stage
    • Skip a pipeline
    • Delete a pipeline
    • Pipeline security on protected branches
  • Trigger a pipeline when an upstream project is rebuilt
    • How pipeline duration is calculated
  • View pipelines
    • Pipeline details
      • Group jobs by stage or needs configuration
    • Pipeline mini graphs
    • Downstream pipeline graphs
  • Pipeline success and duration charts
  • Pipeline badges
  • Pipelines API
  • Ref specs for runners

Tier: Free, Premium, UltimateOffering: GitLab.com, Self-managed, GitLab Dedicated

Pipelines are the top-level component of continuous integration, delivery, and deployment.

Pipelines comprise:

  • 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.

Jobs are executed by runners. Multiple jobs in the same stage are executed in parallel,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.

In general, pipelines are executed automatically and require no intervention once created. However, there arealso times when you can manually interact with a pipeline.

A typical pipeline might consist of four stages, executed in the following order:

  • 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.

If you have a mirrored repository that GitLab pulls from,you may need to enable pipeline triggering in your project’sSettings > Repository > Mirroring repositories > Trigger pipelines for mirror updates.

Types of pipelines

Pipelines can be configured in many different ways:

  • Basic pipelines run everything in each stage concurrently,followed by the next stage.
  • Directed Acyclic Graph Pipeline (DAG) pipelines are based on relationshipsbetween jobs and can run more quickly than basic pipelines.
  • Merge request pipelines run for mergerequests only (rather than for every commit).
  • Merged results pipelinesare merge request pipelines that act as though the changes from the source branch havealready been merged into the target branch.
  • Merge trainsuse merged results pipelines to queue merges one after the other.
  • Parent-child pipelines break down complex pipelinesinto one parent pipeline that can trigger multiple child sub-pipelines, which allrun in the same project and with the same SHA. This pipeline architecture is commonly used for mono-repos.
  • Multi-project pipelines combine pipelines for different projects together.

Configure a pipeline

Pipelines and their component jobs and stages are defined in the CI/CD pipeline configuration file for each project.

  • Jobs are the basic configuration component.
  • Stages are defined by using the stages keyword.

For a list of configuration options for the CI/CD configuration file, see the CI/CD YAML syntax reference.

You can also configure specific aspects of your pipelines through the GitLab UI. For example:

  • Pipeline settings for each project.
  • Pipeline schedules.
  • Custom CI/CD variables.

The recommended tool for editing CI/CD configuration is the pipeline editor.

If you use VS Code to edit your GitLab CI/CD configuration, the GitLab Workflow VS Code extensionhelps you validate your configurationand view your pipeline status.

Run a pipeline manually

Pipelines can be manually executed, with predefined or manually-specified variables.

You might do this if the results of a pipeline (for example, a code build) are required outside the standardoperation of the pipeline.

To execute a pipeline manually:

  1. On the left sidebar, select Search or go to and find your project.
  2. Select Build > Pipelines.
  3. Select Run pipeline.
  4. In the Run for branch name or tag field, select the branch or tag to run the pipeline for.
  5. Enter any CI/CD variables required for the pipeline to run.You can set specific variables to have their values prefilled in the form.
  6. Select Run pipeline.

The pipeline now executes the jobs as configured.

Prefill variables in manual pipelines

You can use the description and valuekeywords to define pipeline-level (global) variablesthat are prefilled when running a pipeline manually. Use the description to explaininformation such as what the variable is used for, and what the acceptable values are.

Job-level variables cannot be pre-filled.

In manually-triggered pipelines, the Run pipeline page displays all pipeline-level variablesthat have a description defined in the .gitlab-ci.yml file. The description displaysbelow the variable.

You can change the prefilled value, which overrides the value for that single pipeline run.Any variables overridden by using this process are expandedand not masked.If you do not define a value for the variable in the configuration file, the variable name is still listed,but the value field is blank.

For example:

variables: DEPLOY_CREDENTIALS: description: "The deployment credentials." DEPLOY_ENVIRONMENT: description: "Select the deployment target. Valid options are: 'canary', 'staging', 'production', or a stable branch of your choice." value: "canary"

In this example:

  • DEPLOY_CREDENTIALS is listed in the Run pipeline page, but with no value set.The user is expected to define the value each time the pipeline is run manually.
  • DEPLOY_ENVIRONMENT is pre-filled in the Run pipeline page with canary as the default value,and the message explains the other options.

Because of a known issue, projects that use compliance pipelines can have prefilled variables not appearwhen running a pipeline manually. To workaround this issue,change the compliance pipeline configuration.

Configure a list of selectable prefilled variable values

History

  • Introduced in GitLab 15.5 with a flag named run_pipeline_graphql. Disabled by default.
  • The options keyword was introduced in GitLab 15.7.
  • Generally available in GitLab 15.7. Feature flag run_pipeline_graphql removed.
  • The variables list sometimes did not populate correctly due to a bug, which was resolved in GitLab 15.9.

You can define an array of CI/CD variable values the user can select from when running a pipeline manually.These values are in a dropdown list in the Run pipeline page. Add the list ofvalue options to options and set the default value with value. The string in valuemust also be included in the options list.

For example:

variables: DEPLOY_ENVIRONMENT: value: "staging" options: - "production" - "staging" - "canary" description: "The deployment target. Set to 'staging' by default."

Run a pipeline by using a URL query string

You can use a query string to pre-populate the Run Pipeline page. For example, the query string.../pipelines/new?ref=my_branch&var[foo]=bar&file_var[file_foo]=file_bar pre-populates theRun Pipeline page with:

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

The format of the pipelines/new URL is:

.../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.

Add manual interaction to your pipeline

Manual jobs,allow you to require manual interaction before moving forward in the pipeline.

You can do this straight from the pipeline graph. Select Run () to execute that particular job.

For example, your pipeline can start automatically, but require a manual action todeploy to production.In the example below, the production stage has a job with a manual action:

Start all manual jobs in a stage

If a stage contains only manual jobs, you can start all the jobs at the same timeby selecting Run all manual () above the stage. If the stage containsnon-manual jobs, the option is not displayed.

Skip a pipeline

To push a commit without triggering a pipeline, add [ci skip] or [skip ci], using anycapitalization, to your commit message.

Alternatively, with Git 2.10 or later, use the ci.skip Git push option.The ci.skip push option does not skip merge request pipelines.

Delete a pipeline

Users with the Owner role for a project can delete a pipeline:

  1. On the left sidebar, select Search or go to and find your project.
  2. Select Build > Pipelines.
  3. Select either the pipeline ID (for example #123456789) or the pipeline status icon(for example Passed) of the pipeline to delete.
  4. In the top right of the pipeline details page, select Delete.

Deleting a pipeline does not automatically delete its child pipelines.See issue 39503 for more details.

Deleting a pipeline expires all pipeline caches, and deletes all immediatelyrelated objects, such as jobs, logs, artifacts, and triggers.This action cannot be undone.

Pipeline security on protected branches

A strict security model is enforced when pipelines are executed onprotected branches.

The following actions are allowed on protected branches if the user isallowed to merge or pushto that specific branch:

  • Run manual pipelines (using the Web UI or pipelines API).
  • Run scheduled pipelines.
  • Run pipelines using triggers.
  • Run on-demand DAST scan.
  • Trigger manual actions on existing pipelines.
  • Retry or cancel existing jobs (using the Web UI or pipelines API).

Variables marked as protected are accessible to jobs that run in pipelines for protected branches. Only assign users the right to merge to protected branches if they have permission to access sensitive information like deployment credentials and tokens.

Runners marked as protected can run jobs only on protectedbranches, preventing untrusted code from executing on the protected runner andpreserving deployment keys and other credentials from being unintentionallyaccessed. To ensure that jobs intended to be executed on protectedrunners do not use regular runners, they must be tagged accordingly.

Review the deployment safetypage for additional security recommendations for securing your pipelines.

Trigger a pipeline when an upstream project is rebuilt

Tier: Premium, UltimateOffering: GitLab.com, Self-managed, GitLab Dedicated

You can trigger a pipeline in your project whenever a pipeline finishes for a newtag in a different project.

Prerequisites:

  • The upstream project must be public.
  • The user must have the Developer rolein the upstream project.

To trigger the pipeline when the upstream project is rebuilt:

  1. On the left sidebar, select Search or go to and find your project.
  2. Select Settings > CI/CD.
  3. Expand Pipeline subscriptions.
  4. Select Add project.
  5. Enter the project you want to subscribe to, in the format <namespace>/<project>.For example, if the project is https://gitlab.com/gitlab-org/gitlab, use gitlab-org/gitlab.
  6. Select Subscribe.

Any pipelines that complete successfully for new tags in the subscribed projectnow trigger a pipeline on the current project’s default branch. The maximumnumber of upstream pipeline subscriptions is 2 by default, for both the upstream anddownstream projects. On self-managed instances, an administrator can change thislimit.

How pipeline duration is calculated

The total running time for a given pipeline excludes:

  • The duration of the initial run for any job that is retried or manually re-run.
  • Any pending (queue) time.

That means that if a job is retried or manually re-run, only the duration of the latest run is included in the total running 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 (0, 2)
  • A’ (2, 4)
    • This is retrying A
  • B (1, 3)
  • C (6, 7)

In the example:

  • A begins at 0 and ends at 2.
  • A’ begins at 2 and ends at 4.
  • B begins at 1 and ends at 3.
  • C begins at 6 and ends at 7.

Visually, it can be viewed as:

0 1 2 3 4 5 6 7AAAAAAA BBBBBBB A'A'A'A CCCC

Because A is retried, we ignore it and count only job A’.The union of B, A’, and C is (1, 4) and (6, 7). Therefore, the totalrunning time is:

(4 - 1) + (7 - 6) => 4

View pipelines

To view all the pipelines that ran for your project:

  1. On the left sidebar, select Search or go to and find your project.
  2. Select Build > Pipelines.

You can filter the pipeline list by:

  • Trigger author
  • Branch name
  • Status
  • Tag
  • Source

Select Pipeline ID in the dropdown list in the top right to display the pipeline IDs(unique ID across the instance).Select pipeline IID to display the pipeline IIDs (internal ID, unique across the project only).

For example:

To view the pipelines that relate to a specific merge request, go to the Pipelines tabin the merge request.

Pipeline details

History

  • Pipeline detail view updated in GitLab 16.6 with a flag named new_pipeline_graph. Disabled by default.
  • Updated pipeline detail view enabled on GitLab.com in GitLab 16.8.

Select a pipeline to open the pipeline details page which shows every job in the pipeline.From this page you can cancel a running pipeline, retry failed jobs, or delete a pipeline.

The pipeline details page displays a graph of all the jobs in the pipeline:

You can use a standard URL to access the details for specific pipelines:

  • gitlab.example.com/my-group/my-project/-/pipelines/pipelines/latest: The details pagefor the latest pipeline for the most recent commit on the default branch in the project.
  • gitlab.example.com/my-group/my-project/-/pipelines/<branch>/latest: The details pagefor the latest pipeline for the most recent commit on branch <branch> in the project.

Group jobs by stage or needs configuration

When you configure jobs with the needs keyword, you havetwo options for how to group the jobs in the pipeline details page. To group the jobsby stage configuration, select stage in the Group jobs by section:

To group the jobs by needs configuration, select Job dependencies.You can optionally select Show dependencies to render lines between dependent jobs,similar to the needs visualizationin the pipeline editor:

Jobs in the leftmost column run first, and jobs that depend on them are grouped in the next columns.In this example:

  • lint-job is configured with needs: [] and depends on no jobs, so it displays in the first column,despite being in the test stage.
  • test-job1 depends on build-job1, and test-job2 depends on both build-job1 and build-job2,so both test jobs display in the second column.
  • Both deploy jobs depend on jobs in second column (which themselves depend on other earlier jobs),so the deploy jobs display in the third column.

When you hover over a job in the Job dependencies view, every job that must runbefore the selected job is highlighted:

Pipeline mini graphs

History

  • Pipeline mini graph in the pipeline editor introduced in GitLab 14.5.

Pipeline mini graphs take less space and can tell you at a quick glance if all jobs passedor something failed. They show all related jobs for a single commit and the net resultof each stage of your pipeline. You can quickly see what failed and fix it.

The pipeline mini graph always group jobs by stage, and display throughout GitLabwhen displaying pipeline or commit details.

Stages in pipeline mini graphs are expandable. Hover your mouse over each stageto see the name and status, and select a stage to expand its jobs list.

Downstream pipeline graphs

When a pipeline contains a job that triggers a downstream pipeline,you can see the downstream pipeline in the pipeline details view and mini graphs.

In the pipeline details view, a card displays for every triggered downstream pipelineon the right of the pipeline graph. Hover over a card to see which job triggered thedownstream pipeline. Select a card to display the downstream pipeline to the rightof the pipeline graph.

In the pipeline mini graph, the status of every triggered downstream pipeline displaysas additional status icons to the right of the mini graph. Select a downstream pipelinestatus icon to go to the detail page of that downstream pipeline.

Pipeline success and duration charts

Pipeline analytics are available on the CI/CD Analytics page.

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.

Pipelines API

GitLab provides API endpoints to:

  • Perform basic functions. For more information, see Pipelines API.
  • Maintain pipeline schedules. For more information, see Pipeline schedules API.
  • Trigger pipeline runs. For more information, see:
    • Triggering pipelines through the API.
    • Pipeline triggers API.

Ref specs for runners

When a runner picks a pipeline job, GitLab provides that job’s metadata. This includes the Git refspecs,which indicate which ref (such as branch or tag) and commit (SHA1) are checked out from yourproject repository.

This table lists the refspecs injected for each pipeline type:

Pipeline typeRefspecs
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>
merge request pipeline+refs/pipelines/<id>:refs/pipelines/<id>

The refs refs/heads/<name> and refs/tags/<name> exist in yourproject repository. GitLab generates the special ref refs/pipelines/<id> during arunning pipeline job. This ref can be created even after the associated branch or tag has beendeleted. It’s therefore useful in some features such as automatically stopping an environment,and merge trains that might run pipelines after branch deletion.

CI/CD pipelines | GitLab (2024)
Top Articles
Latest Posts
Article information

Author: Annamae Dooley

Last Updated:

Views: 5540

Rating: 4.4 / 5 (45 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Annamae Dooley

Birthday: 2001-07-26

Address: 9687 Tambra Meadow, Bradleyhaven, TN 53219

Phone: +9316045904039

Job: Future Coordinator

Hobby: Archery, Couponing, Poi, Kite flying, Knitting, Rappelling, Baseball

Introduction: My name is Annamae Dooley, I am a witty, quaint, lovely, clever, rich, sparkling, powerful person who loves writing and wants to share my knowledge and understanding with you.