- View jobs in a pipeline
- See why a job failed
- The order of jobs in a pipeline
- Job name limitations
- Group jobs in a pipeline
- Hide jobs
- Control the inheritance of default keywords and global variables
- Specifying variables when running manual jobs
- Delay a job
- Expand and collapse job log sections
- Deployment jobs
Jobs
Pipeline configuration begins with jobs. Jobs are the most fundamental element of a .gitlab-ci.yml
file.
Jobs are:
- Defined with constraints stating under what conditions they should be executed.
- Top-level elements with an arbitrary name and must contain at least the
script
clause. - Not limited in how many can be defined.
For example:
job1:
script: "execute-script-for-job1"
job2:
script: "execute-script-for-job2"
The above example is the simplest possible CI/CD configuration with two separate
jobs, where each of the jobs executes a different command.
Of course a command can execute code directly (./configure;make;make install
)
or run a script (test.sh
) in the repository.
Jobs are picked up by runners and executed in the environment of the runner. What is important is that each job is run independently from each other.
View jobs in a pipeline
When you access a pipeline, you can see the related jobs for that pipeline.
Clicking an individual job shows you its job log, and allows you to:
- Cancel the job.
- Retry the job.
- Erase the job log.
View all jobs in a project
- An improved view was The job status filter was
To view the full list of jobs that ran in a project:
- On the top bar, select Menu > Projects and find the project.
- On the left sidebar, select CI/CD > Jobs.
You can filter the list by job status.
See why a job failed
When a pipeline fails or is allowed to fail, there are several places where you can find the reason:
- 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.
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.
The order of jobs in a 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
For example:
Job name limitations
You can’t use these keywords as job names:
image
services
stages
types
before_script
after_script
variables
cache
include
true
false
nil
Job names must be 255 characters or fewer.
Use unique names for your jobs. If multiple jobs have the same name, only one is added to the pipeline, and it’s difficult to predict which one is chosen.
Group jobs in a pipeline
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 don’t see the retry or cancel button inside them. Hovering over them shows the number of grouped jobs. Click to expand them.
To create a group of jobs, in the CI/CD pipeline configuration file, separate each job name with a number and one of the following:
- A slash (
/
), for example,test 1/3
,test 2/3
,test 3/3
. - A colon (
:
), for example,test 1:3
,test 2:3
,test 3:3
. - A space, for example
test 0 3
,test 1 3
,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.
evaluates the job names: In ,
the regular expression is To temporarily disable a job without deleting it from the configuration
file:
Comment out the job’s configuration:
Start the job name with a dot ( You can use hidden jobs that start with You can control the inheritance of:
For example:
In this example:
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. To access this page, click on the name of the manual job in
the pipeline view, not the play () button.
This is useful when you want to alter the execution of a job that uses
custom CI/CD variables.
Add a variable name (key) and value here to override the value defined in
the UI or When you do not want to run a job immediately, you can use the This is especially useful for timed incremental rollout where new code is rolled out gradually.
For example, if you start rolling out new code and:
Job logs are divided into sections that can be collapsed or expanded. Each section displays
the duration.
In the following example:
You can create collapsible sections in job logs
by manually outputting special codes
that GitLab uses to determine what sections to collapse:
You must add these codes to the script section of the CI configuration. For example,
using Depending on the shell that your runner uses, for example if it is using ZSH, you may need to
escape the special characters like so: In the example above:
Sample raw job log:
You can make the job log automatically collapse collapsible sections by adding the Add the updated section start text to the CI configuration. For example,
using Deployment jobs are a specific kind of CI job in that they deploy code to
environments. A deployment job is any job that
uses the The behavior of deployment jobs can be controlled with
deployment safety settings like
skipping outdated deployment jobs
and ensuring only one deployment job runs at a time.
If you didn't find what you were looking for,
search the docs.
If you want help with something specific and could use community support,
.
For problems setting up or using this feature (depending on your GitLab
subscription).([\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.
\d+[\s:\/\\]+\d+\s*
. Feature flag
removed in .
Hide jobs
# hidden_job:
# script:
# - run test
.
) and it is not processed by GitLab CI/CD:
.hidden_job:
script:
- run test
.
as templates for reusable configuration with:
extends
keyword.
Control the inheritance of default keywords and global variables
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
rubocop
:
rspec
:
image
and the WEBHOOK_URL
variable.
before_script
and the DOMAIN
variable.
capybara
:
before_script
and image
.
DOMAIN
and WEBHOOK_URL
variables.
karma
:
image
and before_script
, and the DOMAIN
variable.
WEBHOOK_URL
variable.
Specifying variables when running manual jobs
.gitlab-ci.yml
,
for a single run of the manual job.
Delay a job
when:delayed
keyword to
delay a job’s execution for a certain period.
Expand and collapse job log sections
Custom collapsible sections
\e[0Ksection_start:UNIX_TIMESTAMP:SECTION_NAME\r\e[0K
+ TEXT_OF_SECTION_HEADER
\e[0Ksection_end:UNIX_TIMESTAMP:SECTION_NAME\r\e[0K
echo
:
job1:
script:
- echo -e "\e[0Ksection_start:`date +%s`:my_first_section\r\e[0KHeader of the 1st collapsible section"
- echo 'this line should be hidden when collapsed'
- echo -e "\e[0Ksection_end:`date +%s`:my_first_section\r\e[0K"
\\e
and \\r
.
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 (Show complete raw).
\r
: carriage return.
\e[0K
: clear line ANSI escape code.
\e[0Ksection_start:1560896352:my_first_section\r\e[0KHeader of the 1st collapsible section
this line should be hidden when collapsed
\e[0Ksection_end:1560896353:my_first_section\r\e[0K
Pre-collapse sections
collapsed
option to the section start.
Add [collapsed=true]
after the section name and before the \r
. The section end marker
remains unchanged:
[collapsed=true]
: \e[0Ksection_start:UNIX_TIMESTAMP:SECTION_NAME[collapsed=true]\r\e[0K
+ TEXT_OF_SECTION_HEADER
section_end:UNIX_TIMESTAMP:SECTION_NAME\r\e[0K
echo
:
job1:
script:
- echo -e "\e[0Ksection_start:`date +%s`:my_first_section[collapsed=true]\r\e[0KHeader of the 1st collapsible section"
- echo 'this line should be hidden automatically after loading the job log'
- echo -e "\e[0Ksection_end:`date +%s`:my_first_section\r\e[0K"
Deployment jobs
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 for the sake of the example, but you can omit it:
deploy me:
script:
- deploy-to-cats.sh
environment:
name: production
url: https://cats.example.com
action: start
Help & feedback
Docs
Edit this page
to fix an error or add an improvement in a merge request.
Create an issue
to suggest an improvement to this page.
Product
Create an issue
if there's something you don't like about this feature.
Propose functionality
by submitting a feature request.
to help shape new features.
Feature availability and product trials
to see all GitLab tiers and features, or to upgrade.
with access to all features for 30 days.
Get Help