- Add a job to a pipeline
- Set default values for job keywords
- View jobs in a pipeline
- Troubleshoot a failed job
- Deployment jobs
CI/CD Jobs
CI/CD jobs are the fundamental elements of a GitLab CI/CD pipeline.
Jobs are configured in the .gitlab-ci.yml
file with a list of commands to execute
to accomplish tasks like building, testing, or deploying code.
Jobs:
- Execute on a runner, for example in a Docker container.
- Run independently from other jobs.
- Have a job log with the full execution log for the job.
Jobs are defined with YAML keywords that define all aspects of the job’s execution, including keywords that:
- Control how and when jobs run.
- Group jobs together in collections called stages. Stages run in sequence, while all jobs in a stage can run in parallel.
- Define CI/CD variables for flexible configuration.
- Define caches to speed up job execution.
- Save files as artifacts which can be used by other jobs.
Add a job to a pipeline
To add a job to a pipeline, add it into your .gitlab-ci.yml
file. The job must:
- Be defined at the top-level of the YAML configuration.
- Have a unique job name.
- Have either a
script
section defining commands to run, or atrigger
section to trigger a downstream pipeline to run.
For example:
my-ruby-job:
script:
- bundle install
- bundle exec my_ruby_command
my-shell-script-job:
script:
- my_shell_script.sh
Job names
You can’t use these keywords as job names:
image
services
stages
before_script
after_script
variables
cache
include
-
pages:deploy
configured for adeploy
stage
Additionally, these names are valid when quoted, but are not recommended as they can make pipeline configuration unclear:
"true":
"false":
"nil":
Job names must be 255 characters or fewer.
Use unique names for your jobs. If multiple jobs have the same name in a file, only one is added to the pipeline, and it’s difficult to predict which one is chosen. If the same job name is used in one or more included files, parameters are merged.
Hide a job
To temporarily disable a job without deleting it from the configuration
file, add a period (.
) to the start of the job name. Hidden jobs do not need to contain
the script
or trigger
keywords, but must contain valid YAML configuration.
For example:
.hidden_job:
script:
- run test
Hidden jobs are not processed by GitLab CI/CD, but they can be used as templates for reusable configuration with:
- The
extends
keyword. - YAML anchors.
Set default values for job keywords
You can use the default
keyword to set default job keywords and values, which are
used by default by all jobs in a pipeline.
For example:
default:
image: 'ruby:2.4'
before_script:
- echo Hello World
rspec-job:
script: bundle exec rspec
When the pipeline runs, the job uses the default keywords:
rspec-job:
image: 'ruby:2.4'
before_script:
- echo Hello World
script: bundle exec rspec
Control the inheritance of default keywords and variables
You can control the inheritance of:
For example:
default:
image: 'ruby:2.4'
before_script:
- echo Hello World
variables:
DOMAIN: example.com
WEBHOOK_URL: https://my-webhook.example.com
rubocop:
inherit:
default: false
variables: false
script: bundle exec rubocop
rspec:
inherit:
default: [image]
variables: [WEBHOOK_URL]
script: bundle exec rspec
capybara:
inherit:
variables: false
script: bundle exec capybara
karma:
inherit:
default: true
variables: [DOMAIN]
script: karma
In this example:
-
rubocop
:- inherits: Nothing.
-
rspec
:- inherits: the default
image
and theWEBHOOK_URL
variable. - does not inherit: the default
before_script
and theDOMAIN
variable.
- inherits: the default
-
capybara
:- inherits: the default
before_script
andimage
. - does not inherit: the
DOMAIN
andWEBHOOK_URL
variables.
- inherits: the default
-
karma
:- inherits: the default
image
andbefore_script
, and theDOMAIN
variable. - does not inherit:
WEBHOOK_URL
variable.
- inherits: the default
View jobs in a pipeline
When you access a pipeline, you can see the related jobs for that pipeline.
The order of jobs in a pipeline depends on the type of pipeline graph.
- For full pipeline graphs, jobs are sorted by name.
-
For pipeline mini graphs, jobs are sorted by status, and then by name. The job status order is:
- failed
- warning
- pending
- running
- manual
- scheduled
- canceled
- success
- skipped
- created
Selecting an individual job shows you its job log, and allows you to:
- Cancel the job.
- Retry the job, if it failed.
- Run the job again, if it passed.
- Erase the job log.
View all jobs in a project
- Filtering jobs by job name introduced as an experiment on GitLab.com and GitLab Self-Managed in GitLab 17.3 with flags named
populate_and_use_build_names_table
for the API andfe_search_build_by_name
for the UI. Disabled by default.
Filtering jobs by name is an experiment. For more information about the development of this feature, see issue 387547.
To view the full list of jobs that ran in a project:
- On the left sidebar, select Search or go to and find your project.
- Select Build > Jobs.
You can filter the list by job status and job name.
Group similar jobs together in pipeline views
If you have many similar jobs, your pipeline graph becomes long and hard to read.
You can automatically group similar jobs together. If the job names are formatted in a certain way, they are collapsed into a single group in regular pipeline graphs (not the mini graphs).
You can recognize when a pipeline has grouped jobs if you see a number next to a job name instead of the retry or cancel buttons. The number indicates the amount of grouped jobs. Hovering over them shows you if all jobs have passed or any has failed. Select to expand them.
To create a group of jobs, in the .gitlab-ci.yml
file,
separate each job name with a number and one of the following:
- A slash (
/
), for example,slash-test 1/3
,slash-test 2/3
,slash-test 3/3
. - A colon (
:
), for example,colon-test 1:3
,colon-test 2:3
,colon-test 3:3
. - A space, for example
space-test 0 3
,space-test 1 3
,space-test 2 3
.
You can use these symbols interchangeably.
In the example below, these three jobs are in a group named build ruby
:
build ruby 1/3:
stage: build
script:
- echo "ruby1"
build ruby 2/3:
stage: build
script:
- echo "ruby2"
build ruby 3/3:
stage: build
script:
- echo "ruby3"
The pipeline graph displays a group named build ruby
with three jobs.
The jobs are ordered by comparing the numbers from left to right. You usually want the first number to be the index and the second number to be the total.
This regular expression
evaluates the job names: ([\b\s:]+((\[.*\])|(\d+[\s:\/\\]+\d+))){1,3}\s*\z
.
One or more : [...]
, X Y
, X/Y
, or X\Y
sequences are removed from the end
of job names only. Matching substrings found at the beginning or in the middle of
job names are not removed.
Troubleshoot a failed job
When a pipeline fails or is allowed to fail, there are several places where you can find the reason:
- In the pipeline graph, in the pipeline details 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.
In each place, if you hover over the failed job you can see the reason it failed.
You can also see the reason it failed on the Job detail page.
With Root Cause Analysis
You can use GitLab Duo Root Cause Analysis in GitLab Duo Chat to troubleshoot failed CI/CD jobs.
Deployment jobs
Deployment jobs are CI/CD jobs that use environments.
A deployment job is any job that uses the environment
keyword and the start
environment action
.
Deployment jobs do not need to be in the deploy
stage. The following deploy me
job is an example of a deployment job. action: start
is the default behavior and
is defined here for clarity, but you can omit it:
deploy me:
script:
- deploy-to-cats.sh
environment:
name: production
url: https://cats.example.com
action: start
The behavior of deployment jobs can be controlled with deployment safety settings like preventing outdated deployment jobs and ensuring only one deployment job runs at a time.