doc/development/pipelines/_index.md
Pipelines for gitlab-org/gitlab (as well as the dev instance's) is configured in the usual
.gitlab-ci.yml
which itself includes files under
.gitlab/ci/
for easier maintenance.
We're striving to dogfood GitLab CI/CD features and best-practices as much as possible.
Do not use CI/CD components in gitlab-org/gitlab pipelines
unless they are mirrored on the dev.gitlab.com instance. CI/CD components do not work across different instances,
and cause failing pipelines
on the dev.gitlab.com mirror if they do not exist on that instance.
A merge request will typically run several CI/CD pipelines. Depending on where the merge request is at in the approval process, we will trigger different kinds of pipelines. We call those kinds of pipelines pipeline tiers.
We currently have three tiers:
pipeline::tier-1: The merge request has no approvalspipeline::tier-2: The merge request has at least one approval, but still requires more approvalspipeline::tier-3: The merge request has all the approvals it needsTypically, the lower the pipeline tier, the fastest the pipeline should be. The higher the pipeline tier, the more confidence the pipeline should give us by running more tests
See the Introduce "tiers" in MR pipelines epic for more information on the implementation.
To reduce the pipeline cost and shorten the job duration, before a merge request is approved, the pipeline will run a predictive set of RSpec & Jest tests that are likely to fail for the merge request changes.
After a merge request has been approved, the pipeline would contain the full RSpec & Jest tests. This will ensure that all tests have been run before a merge request is merged.
To understand how the predictive test jobs are executed, we need to understand the dependency between GitLab code (frontend and backend) and the respective tests (Jest and RSpec). This dependency can be visualized in the following diagram:
flowchart LR
subgraph frontend
fe["Frontend code"]--tested with-->jest
end
subgraph backend
be["Backend code"]--tested with-->rspec
end
be--generates-->fixtures["frontend fixtures"]
fixtures--used in-->jest
In summary:
detect-tests CI jobMost CI/CD pipelines for gitlab-org/gitlab will run a detect-tests CI job in the prepare stage to detect which backend/frontend tests should be run based on the files that changed in the given MR.
The detect-tests job will create many files that will contain the backend/frontend tests that should be run. Those files will be read in subsequent jobs in the pipeline, and only those tests will be executed.
To identify the RSpec tests that are likely to fail in a merge request, we use dynamic mappings and static mappings.
First, we use the test_file_finder gem, with dynamic mapping strategies coming from the Crystalball gem)
(see where it's used, and the mapping strategies we use in Crystalball).
In addition to test_file_finder, we have added several advanced mappings to detect even more tests to run:
FindChanges (!74003)
PartialToViewsMappings (#395016)
JsToSystemSpecsMappings (#386754)
GraphqlBaseTypeMappings (#386756)
ViewToSystemSpecsMappings (#395017)
ViewToJsMappings (#386719)
FindFilesUsingFeatureFlags (#407366)
We use the test_file_finder gem, with a static mapping maintained in the tests.yml file for special cases that cannot
be mapped via dynamic mappings (see where it's used).
The test mappings contain a map of each source files to a list of test files which is dependent of the source file.
In addition, there are a few circumstances where we would always run the full RSpec tests:
pipeline:run-all-rspec label is set on the merge request. This label will trigger all RSpec tests including those run in the as-if-foss jobs.pipeline:mr-approved label is set on the merge request, and if the code changes satisfy the backend-patterns rule. Note that this label is assigned by triage automation when the merge request is approved by any reviewer. It is not recommended to apply this label manually..gitlab-ci.yml or .gitlab/ci/**/*)If so, have a look at the Development Analytics RUNBOOK on predictive tests for instructions on how to act upon predictive tests issues. Additionally, if you identified any test selection gaps, let @gl-dx/development-analytics know so that we can take the necessary steps to optimize test selections.
To identify the jest tests that are likely to fail in a merge request, we pass a list of all the changed files into jest using the --findRelatedTests option.
In this mode, jest would resolve all the dependencies of related to the changed files, which include test files that have these files in the dependency chain.
In addition, there are a few circumstances where we would always run the full Jest tests:
pipeline:run-all-jest label is set on the merge request.gitlab/ci/rules.gitlab-ci.yml, .gitlab/ci/frontend.gitlab-ci.yml)package.json, yarn.lock, config/webpack.config.js, config/helpers/**/*.js)vendor/assets/javascripts/**/*)The rules definitions for full Jest tests are defined at .frontend:rules:jest in
rules.gitlab-ci.yml.
If so, have a look at the Development analytics RUNBOOK on predictive tests for instructions on how to act upon predictive tests issues.
We run only the predictive RSpec & Jest jobs for fork pipelines, unless the pipeline:run-all-rspec
label is set on the MR. The goal is to reduce the compute quota consumed by fork pipelines.
See the experiment issue.
To provide faster feedback when a merge request breaks existing tests, we implemented a fail-fast mechanism.
An rspec fail-fast job is added in parallel to all other rspec jobs in a merge
request pipeline. This job runs the tests that are directly related to the changes
in the merge request.
If any of these tests fail, the rspec fail-fast job fails, triggering a
fail-pipeline-early job to run. The fail-pipeline-early job:
failed.For example:
graph LR
subgraph "prepare stage";
A["detect-tests"]
end
subgraph "test stage";
B["jest"];
C["rspec migration"];
D["rspec unit"];
E["rspec integration"];
F["rspec system"];
G["rspec fail-fast"];
end
subgraph "post-test stage";
Z["fail-pipeline-early"];
end
A --"artifact: list of test files"--> G
G --"on failure"--> Z
The rspec fail-fast is a no-op if there are more than 10 test files related to the
merge request. This prevents rspec fail-fast duration from exceeding the average
rspec job duration and defeating its purpose.
This number can be overridden by setting a CI/CD variable named RSPEC_FAIL_FAST_TEST_FILE_COUNT_THRESHOLD.
In order to reduce the feedback time after resolving failed tests for a merge request, the rspec rspec-pg17-rerun-previous-failed-tests
and rspec rspec-ee-pg17-rerun-previous-failed-tests jobs run the failed tests from the previous MR pipeline.
This was introduced on August 25th 2021, with https://gitlab.com/gitlab-org/gitlab/-/merge_requests/69053.
detect-previous-failed-tests job (prepare stage) detects the test files associated with failed RSpec
jobs from the previous MR pipeline.rspec rspec-pg17-rerun-previous-failed-tests and rspec rspec-ee-pg17-rerun-previous-failed-tests jobs
will run the test files gathered by the detect-previous-failed-tests job.graph LR
subgraph "prepare stage";
A["detect-previous-failed-tests"]
end
subgraph "test stage";
B["rspec rspec-pg17-rerun-previous-failed-tests"];
C["rspec rspec-ee-pg17-rerun-previous-failed-tests"];
end
A --"artifact: list of test files"--> B & C
We started using merge trains in June 2024.
At the moment, Merge train pipelines don't run any tests: they only enforce the "Merging a merge request" guidelines that already existed before the enablement of merge trains, but that we couldn't easily enforce.
Merge train pipelines run a single pre-merge-checks job which ensures the latest pipeline before merge is:
tier-3 pipeline (a full pipeline, not a predictive one)We opened a feedback issue to iterate on this solution.
We opened a dedicated issue to discuss the next iteration for merge trains to actually start running tests in merge train pipelines.
If the default branch is unstable (for example, the CI/CD pipelines for the default branch are failing frequently), all of the merge requests pipelines that were added AFTER a faulty merge request pipeline would have to be canceled and added back to the train, which would create a lot of delays if the merge train is long.
We don't have a specific number, but we need to have better numbers for flaky tests failures and infrastructure failures (see the Master Broken Incidents RCA Dashboard).
master FixesWhen you need to fix a broken master, you can add the pipeline::expedited label to expedite the pipelines that run on the merge request.
Note that the merge request also needs to have the master:broken or master:foss-broken label set.
To make your Revert MRs faster, use the revert MR template before you create your merge request. It will apply the pipeline::expedited label and others that will expedite the pipelines that run on the merge request.
pipeline::expedited labelWhen this label is assigned, the following steps of the CI/CD pipeline are skipped:
e2e:test-on-omnibus-ee job.rspec:undercoverage job.Apply the label to the merge request, and run a new pipeline for the MR.
We have dedicated jobs for each testing level and each job runs depending on the
changes made in your merge request.
If you want to force all the RSpec jobs to run regardless of your changes, you can add the pipeline:run-all-rspec label to the merge request.
[!warning] Forcing all jobs on docs only related MRs would not have the prerequisite jobs and would lead to errors
For more information, see End-to-end test pipelines.
The GitLab Observability Backend has dedicated end-to-end tests that run against a GitLab instance. These tests are designed to ensure the integration between GitLab and the Observability Backend is functioning correctly.
The GitLab pipeline has dedicated jobs (see observability-backend.gitlab-ci.yml) that can be executed from GitLab MRs. These jobs will trigger the E2E tests on the GitLab Observability Backend pipeline against a GitLab instance built from the GitLab MR branch. These jobs are useful to make sure that the GitLab changes under review will not break E2E tests on the GitLab Observability Backend pipeline.
There are two Observability end-to-end jobs:
e2e:observability-backend-main-branch: executes the tests against the main branch of the GitLab Observability Backend.e2e:observability-backend: executes the tests against a branch of the GitLab Observability Backend with the same name as the MR branch.The Observability E2E jobs are triggered automatically only for merge requests that touch relevant files, such as those in the lib/gitlab/observability/ directory or specific configuration files related to observability features.
To run these jobs manually, you can add the pipeline:run-observability-e2e-tests-main-branch or pipeline:run-observability-e2e-tests-current-branch label to your merge request.
In the following example workflow, a developer creates an MR that touches Observability code and uses Observability end-to-end jobs:
e2e:observability-backend-main-branch job.e2e:observability-backend-main-branch fails, it means that either the MR broke something (and needs fixing), or the MR made changes that requires the e2e tests to be updated.pipeline:run-observability-e2e-tests-current-branch label on the GitLab MR and wait for the e2e:observability-backend job to succeed.e2e:observability-backend succeeds, the developer can merge both MRs.In addition, the developer can manually add pipeline:run-observability-e2e-tests-main-branch to force the MR to run the e2e:observability-backend-main-branch job. This could be useful in case of changes to files that are not being tracked as related to observability.
There might be situations where the developer would need to skip those tests. To skip tests:
pipeline:skip-observability-e2e-tests label.SKIP_GITLAB_OBSERVABILITY_BACKEND_TRIGGER.To ensure the relevant changes are working properly in the FOSS project, under some conditions we also run:
* as-if-foss jobs in the same pipelineThe * as-if-foss jobs run the GitLab test suite "as if FOSS", meaning as if
the jobs would run in the context of gitlab-org/gitlab-foss. On the other
hand, cross project downstream FOSS pipeline actually runs inside the FOSS
project, which should be even closer to an actual FOSS environment.
We run them in the following cases:
pipeline:run-as-if-foss label is set on the merge requestpipeline:as-if-foss-run-predictive label is set on the merge request
(runs only predictive tests, RuboCop, eslint, and static analysis in the FOSS pipeline)gitlab-org/security/gitlab project.gitlab-ci.yml or .gitlab/ci/**/*)The * as-if-foss jobs are run in addition to the regular EE-context jobs.
They have the FOSS_ONLY='1' variable set and get the ee/ folder removed
before the tests start running.
Cross project downstream FOSS pipeline simulates merging the merge request
into the default branch in the FOSS project instead, which removes a list of
files. The list can be found in
.gitlab/ci/as-if-foss.gitlab-ci.yml
and in
merge-train/bin/merge-train.
The intent is to ensure that a change doesn't introduce a failure after
gitlab-org/gitlab is synced to gitlab-org/gitlab-foss.
AS_IF_FOSS_TOKEN: This is a GitLab FOSS
project token with developer role and write_repository permission,
to push generated as-if-foss/* branch.
This pipeline is also called JiHu validation pipeline, and it's currently allowed to fail. When that happens, follow What to do when the validation pipeline fails.
The start-as-if-jh job triggers a cross project downstream pipeline which
runs the GitLab test suite "as if JiHu", meaning as if the pipeline would run
in the context of GitLab JH. These jobs are only
created in the following cases:
pipeline:run-as-if-jh label is set on the merge requestThis pipeline runs under the context of a generated branch in the GitLab JH validation project, which is a mirror of the GitLab JH mirror.
The generated branch name is prefixed with as-if-jh/ along with the branch
name in the merge request. This generated branch is based on the merge request
branch, additionally adding changes downloaded from the
corresponding JH branch on top to turn the whole
pipeline as if JiHu.
The intent is to ensure that a change doesn't introduce a failure after GitLab is synchronized to GitLab JH.
pipeline:run-as-if-jh labelIf a Ruby file is renamed and there's a corresponding prepend_mod line,
it's likely that GitLab JH is relying on it and requires a corresponding
change to rename the module or class it's prepending.
You can create a corresponding JH branch on GitLab JH by
appending -jh to the branch name. If a corresponding JH branch is found,
as-if-jh pipeline grabs files from the respective branch, rather than from the
default branch main-jh.
For now, CI will try to fetch the branch on the GitLab JH mirror, so it might take some time for the new JH branch to propagate to the mirror.
[!note] While GitLab JH validation is a mirror of GitLab JH mirror, it does not include any corresponding JH branch beside the default
main-jh. This is why when we want to fetch corresponding JH branch we should fetch it from the main mirror, rather than the validation project.
The whole process looks like this:
[!note] We only run
sync-as-if-jh-branchwhen there are dependencies changes.
flowchart TD
subgraph "JiHuLab.com"
JH["gitlab-cn/gitlab"]
end
subgraph "GitLab.com"
Mirror["gitlab-org/gitlab-jh-mirrors/gitlab"]
subgraph MR["gitlab-org/gitlab merge request"]
Add["add-jh-files job"]
Prepare["prepare-as-if-jh-branch job"]
Add --"download artifacts"--> Prepare
end
subgraph "gitlab-org-sandbox/gitlab-jh-validation"
Sync["(*optional) sync-as-if-jh-branch job on branch as-if-jh-code-sync"]
Start["start-as-if-jh job on as-if-jh/* branch"]
AsIfJH["as-if-jh pipeline"]
end
Mirror --"pull mirror with master and main-jh"--> gitlab-org-sandbox/gitlab-jh-validation
Mirror --"download JiHu files with ADD_JH_FILES_TOKEN"--> Add
Prepare --"push as-if-jh branches with AS_IF_JH_TOKEN"--> Sync
Sync --"push as-if-jh branches with AS_IF_JH_TOKEN"--> Start
Start --> AsIfJH
end
JH --"pull mirror with corresponding JH branches"--> Mirror
ADD_JH_FILES_TOKEN: This is a GitLab JH mirror
project token with read_api permission, to be able to download JiHu files.AS_IF_JH_TOKEN: This is a GitLab JH validation
project token with developer role and write_repository permission,
to push generated as-if-jh/* branch.First add-jh-files job will download the required JiHu files from the
corresponding JH branch, saving in artifacts. Next prepare-as-if-jh-branch
job will create a new branch from the merge request branch, commit the
changes, and finally push the branch to the
validation project.
Optionally, if the merge requests have changes to the dependencies, we have an
additional step to run sync-as-if-jh-branch job to trigger a downstream
pipeline on as-if-jh-code-sync branch
in the validation project. This job will perform the same process as
JiHu code-sync, making sure the dependencies changes can be brought to the
as-if-jh branch prior to run the validation pipeline.
If there are no dependencies changes, we don't run this process.
After having the as-if-jh/* branch prepared and optionally synchronized,
start-as-if-jh job will trigger a pipeline in the
validation project
to run the cross-project downstream pipeline.
The GitLab JH mirror project is private and CI is disabled.
It's a pull mirror pulling from GitLab JH, mirroring all branches, overriding divergent refs, triggering no pipelines when mirror is updated.
The pulling user is @gitlab-jh-validation-bot, who
is a maintainer in the project. The credentials can be found in the 1password
engineering vault.
No password is used from mirroring because GitLab JH is a public project.
This GitLab JH validation project is public and CI is enabled, with temporary project variables set.
It's a pull mirror pulling from GitLab JH mirror,
mirroring specific branches: (master|main-jh), overriding
divergent refs, triggering no pipelines when mirror is updated.
The pulling user is @gitlab-jh-validation-bot, who is a maintainer in the project, and also a
maintainer in the
GitLab JH mirror.
The credentials can be found in the 1password engineering vault.
A personal access token from @gitlab-jh-validation-bot with
write_repository permission is used as the password to pull changes from
the GitLab JH mirror. Username is set with gitlab-jh-validation-bot.
There is also a pipeline schedule
to run maintenance pipelines with variable SCHEDULE_TYPE set to maintenance
running every day, updating cache.
The default CI/CD configuration file is also set at jh/.gitlab-ci.yml so it
runs exactly like GitLab JH.
Additionally, a special branch
as-if-jh-code-sync
is set and protected. Maintainers can push and developers can merge for this
branch. We need to set it so developers can merge because we need to let
developers to trigger pipelines for this branch. This is a compromise
before we resolve Developer-level users no longer able to run pipelines on protected branches.
It's used to run sync-as-if-jh-branch to synchronize the dependencies
when the merge requests changed the dependencies. See
How we generate the as-if-JH branch
for its implementation.
BUNDLER_CHECKSUM_VERIFICATION_OPT_IN is set to false
jh/Gemfile.checksum
committed. More context can be found at:
Setting it to false to skip itWe have separate projects for a several reasons.
Security: Previously, we had the mirror project only. However, to fully mitigate a security issue, we had to make the mirror project private.
Isolation: We want to run JH code in a completely isolated and standalone project.
We should not run it under the gitlab-org group, which is where the mirror
project is. The validation project is completely isolated.
Cost: We don't want to connect to JiHuLab.com from each merge request. It is more cost effective to mirror the code from JiHuLab.com to somewhere at GitLab.com, and have our merge requests fetch code from there. This means that the validation project can fetch code from the mirror, rather than from JiHuLab.com. The mirror project will periodically fetch from JiHuLab.com.
Branch separation/security/efficiency: We want to mirror all branches,
so that we can fetch the corresponding JH branch from JiHuLab.com. However,
we don't want to overwrite the as-if-jh-code-sync branch in the validation project,
because we use it to control the validation pipeline and it has access to
AS_IF_JH_TOKEN. However, we cannot mirror all branches except a single
one. See this issue for details.
Given this issue, the validation project is set to only mirror master and
main-jh. Technically, we don't even need those branches, but we do want to
keep the repository up-to-date with all the default branches so that when
we push changes from the merge request, we only need to push changes from
the merge request, which can be more efficient.
Separation of concerns:
master and main-jh to keep changes up-to-date.as-if-jh-code-sync for dependency synchronization.
We should never mirror this.as-if-jh/* branches from the merge requests.
We should never mirror these.We can consider merging the two projects to simplify the setup and process, but we need to make sure that all of these reasons are no longer concerns.
rspec:undercoverage jobThe rspec:undercoverage job runs undercover
to detect, and fail if any changes introduced in the merge request has zero coverage.
The rspec:undercoverage job obtains coverage data from the rspec:coverage
job.
If the rspec:undercoverage job detects missing coverage due to a CE method being overridden in EE, add the pipeline:run-as-if-foss label to the merge request and start a new pipeline.
In the event of an emergency, or false positive from this job, add the
pipeline:skip-undercoverage label to the merge request to allow this job to
fail.
rspec:undercoverage failuresFirst, review the coverage data from the gitlab.lcov artifact from the
rspec:coverage job.
The rspec:coverage job might have failed to gather coverage data for various
reasons.
It is possible the rspec:undercoverage job will detect undercoverage for a method call but does not display warnings.
loc: app/controllers/projects/attestations_controller.rb:84:102, coverage: 87.5%
def parsed_attestation_file hits: n/a
@parsed_attestation_file ||= begin hits: 52
if attestation && attestation_file hits: 12 branches: 1/1
Gitlab::Json.parse(attestation_file.read) hits: 10
else hits: n/a
{} hits: 2
end hits: n/a
rescue JSON::ParserError => e hits: n/a
Gitlab::AppJsonLogger.error( hits: 2
message: 'Failed to parse attestation file', hits: n/a
error_class: e.class.name, hits: n/a
error_message: e.message, hits: n/a
attestation_id: attestation&.id, hits: n/a
project_id: project.id, hits: n/a
feature_category: 'artifact_security' hits: n/a
) hits: n/a
{} hits: 2
end hits: n/a
end hits: n/a
The rspec:undercoverage job has known bugs
that can cause false positive failures. Such false positive failures may also happen if you are updating database migration that is too old.
You can test coverage locally to determine if it's safe to apply pipeline:skip-undercoverage. For example, using <spec> as the name of the
test causing the failure:
RUN_ALL_MIGRATION_TESTS=1 SIMPLECOV=1 bundle exec rspec <spec>.scripts/undercoverage.If these commands return undercover: ✅ No coverage is missing in latest changes then you can apply pipeline:skip-undercoverage to bypass pipeline failures.
If you have to use pipeline:skip-undercoverage to bypass unrelated pipeline failures, please open a follow up MR to add the required test coverage. This leaves the system in a better state for others.
pajamas_adoption job{{< history >}}
{{< /history >}}
The pajamas_adoption job runs the Pajamas Adoption Scanner in merge requests to prevent regressions in the adoption of the Pajamas Design System.
The job fails if the scanner detects regressions caused by a merge request. If the regressions cannot be fixed in the merge request, add the pipeline:skip-pajamas-adoption label to the merge request, then retry the job.
Our current RSpec tests parallelization setup is as follows:
retrieve-tests-metadata job in the prepare stage ensures we have a
knapsack/report-master.json file:
knapsack/report-master.json file is fetched from the latest main pipeline which runs update-tests-metadata
(for now it's the 2-hourly maintenance scheduled master pipeline), if it's not here we initialize the file with {}.[rspec|rspec-ee] [migration|unit|integration|system|geo] n m job are run with
knapsack rspec and should have an evenly distributed share of tests:
knapsack/report-master.json
since the "artifacts from all previous stages are passed by default"."knapsack/${TEST_TOOL}_${TEST_LEVEL}_${DATABASE}_${CI_NODE_INDEX}_${CI_NODE_TOTAL}_report.json".Report specs, not under Leftover specs.update-tests-metadata job (which only runs on scheduled pipelines for
the canonical project and updates the knapsack/report-master.json in 2 ways:
knapsack/rspec*.json files and merge them all together into a single
knapsack/report-master.json file that is saved as artifact.AVERAGE_KNAPSACK_REPORT environment variable is set to true, instead of merging the reports, the job will calculate the average of the test duration between knapsack/report-master.json and knapsack/rspec*.json to reduce the performance impact from potentially random factors such as spec ordering, runner hardware differences, flaky tests, etc.
This experimental approach is aimed to better predict the duration for each spec files to distribute load among parallel jobs more evenly so the jobs can finish around the same time.After that, the next pipeline uses the up-to-date knapsack/report-master.json file.
We collect code coverage data from our test suites to power test selection, coverage analytics, and flaky test analysis.
| Type | Collection method | Tests |
|---|---|---|
| Backend | SimpleCov → LCOV | RSpec |
| Backend E2E | Coverband | E2E specs |
| Frontend | Istanbul | Jest |
| Frontend E2E | Istanbul | E2E specs |
| Workhorse | Go coverage | Go tests |
Coverage data flows through several CI jobs:
Collection: Tests run with coverage instrumentation
rspec jobs collect backend coverage via SimpleCovjest jobs collect frontend coverage via Istanbule2e:test-on-gdk collects E2E coverage via Coverband (backend) and Istanbul (frontend)workhorse jobs collect Go coverageMerging: Coverage from parallel jobs and E2E is merged
rspec:coverage merges RSpec coverage into coverage/lcov/gitlab.lcovcoverage-frontend merges Jest coverageExport: Merged coverage is exported to ClickHouse
test-coverage:export-rspec-and-e2e exports backend coveragetest-coverage:export-jest-and-e2e exports frontend coveragetest-coverage:export-workhorse exports Workhorse coverageFor detailed documentation on coverage collection, data flow, and ClickHouse storage, see Code coverage.
Backend tests that fail are automatically retried once in a separate RSpec process. This helps detect flaky tests, defined as tests that fail then pass with the same commit SHA.
The "retrying failed tests in a new RSpec process" can be disabled by setting the $RETRY_FAILED_TESTS_IN_NEW_PROCESS variable to false.
GitLab CI pipelines use fast quarantine to skip tests that are blocking pipelines while being investigated.
The fast quarantine process can be disabled by setting the $FAST_QUARANTINE variable to false.
For quarantine procedures and syntax, see Quarantining Tests and the Quarantine Process handbook.
By default, we run all tests with the versions that runs on GitLab.com.
Other versions (usually one back-compatible version, and one forward-compatible version) should be running in nightly scheduled pipelines.
Exceptions to this general guideline should be motivated and documented.
We're running Ruby 3.3 on GitLab.com, as well as for the default branch. To prepare for the next Ruby version, we run merge requests in Ruby 3.4. See the roadmap at Ruby 3.4 epic for more details.
To make sure all supported Ruby versions are working, we also run our test suite on dedicated 2-hourly scheduled pipelines for each supported versions.
For merge requests, you can add the following labels to run the respective Ruby version only:
pipeline:run-in-ruby3_3Our test suite runs against PostgreSQL 16 as GitLab.com runs on PostgreSQL 16 and Omnibus defaults to PG14 for new installs and upgrades.
We run our test suite against PostgreSQL 16, 17 and 18 on nightly scheduled pipelines.
[!note] With the addition of PG17, we are close to the limit of nightly jobs, with 1946 out of 2000 jobs per pipeline. Adding new job families could cause the nightly pipeline to fail.
| Where? | PostgreSQL version | Ruby version |
|---|---|---|
| Merge requests | 17 (default version) | 3.3 (default version) |
master branch commits | 17 (default version) | 3.3 (default version) |
maintenance scheduled pipelines for the master branch (every even-numbered hour at XX:05) | 17 (default version) | 3.3 (default version) |
maintenance scheduled pipelines for the ruby-next branch (every odd-numbered hour at XX:10) | 17 (default version) | 3.3 |
nightly scheduled pipelines for the master branch | 17 (default version), 16 and 18 | 3.3 (default version) |
weekly scheduled pipelines for the master branch | 17 (default version) | 3.3 (default version) |
For the next Ruby versions we're testing against with, we run
maintenance scheduled pipelines every 2 hours on the ruby-next branch.
ruby-next must not have any changes. The branch is only there to run
pipelines with another Ruby version in the scheduled maintenance pipelines.
ruby-sync branchThe ruby-sync branch
keeps the ruby-next and rails-next branches up-to-date with master.
It is an orphan branch (not derived from master) that contains only its own
.gitlab-ci.yml, a scripts/slack helper, and a README.md.
A scheduled pipeline
runs on ruby-sync every 2 hours. The gitlab job:
gitlab-org/gitlab repository.ruby-next and rails-next:
checks out the branch, merges origin/master, and pushes the result.No downstream pipelines are triggered by these pushes. The ruby-next and
rails-next branches run their own scheduled maintenance pipelines independently.
The gitlab job authenticates with a project token (RUBY_SYNC_TOKEN)
that has write_repository scope and Maintainer role. The token is
stored in the pipeline schedule variables for the ruby-sync branch.
The gitlab job retries once on script failure to handle transient errors.
If it still fails, a notify job sends a message to the #backend Slack
channel (username ruby-sync) through CI_SLACK_WEBHOOK_URL:
☠️ ruby-sync failed to merge master into the ruby-next/rails-next branches
in gitlab-org/gitlab. Pipeline: <pipeline_url> — Docs: <docs_url>
ruby-sync failuresCommon causes of failure:
ruby-next or rails-next has diverged from
master in a way that causes conflicts, the git merge step fails.
Manually resolve the conflict on the affected branch and retry.RUBY_SYNC_TOKEN project token
has not expired. Check the pipeline schedule configuration.To retry, go to the
pipeline schedules
page and run the ruby-sync schedule, or retry the failed job from the
pipeline page.
Our test suite runs against Redis 6 as GitLab.com runs on Redis 6 and Omnibus defaults to Redis 6 for new installs and upgrades.
We do run our test suite against Redis 7 on nightly scheduled pipelines, specifically when running forward-compatible PostgreSQL 15 jobs.
| Where? | Redis version |
|---|---|
| MRs | 6 |
default branch (non-scheduled pipelines) | 6 |
nightly scheduled pipelines | 7 |
By default, all tests run with multiple databases.
We also run tests with a single database in nightly scheduled pipelines, and in merge requests that touch database-related files.
Single database tests run in two modes:
-single-dbgitlab_main, gitlab_ci database tables
using different database connections. This runs through all the jobs that end with -single-db-ci-connection.If you want to force tests to run with a single database, you can add the pipeline:run-single-db label to the merge request.
Our test suite runs against Elasticsearch 9 as GitLab.com runs on Elasticsearch 9 when certain conditions are met.
We run our test suite against Elasticsearch 8, 9 and OpenSearch 1, 2 on nightly scheduled pipelines. All test suites use PostgreSQL 17 because there is no dependency between the database and search backend.
| Where? | Elasticsearch version | OpenSearch Version | PostgreSQL version |
|---|---|---|---|
Merge requests with label ~group::global search or ~pipeline:run-search-tests | 9.X (production) | 17 (default version) | |
nightly scheduled pipelines for the master branch | 7.X, 9.X (production) | 1.X, 2.X | 17 (default version) |
weekly scheduled pipelines for the master branch | 8.X | latest | 17 (default version) |
The GitLab test suite is monitored for the main branch, and any branch
that includes rspec-profile in their name.
log/test.log is disabled by default in CI
for performance reasons.
To override this setting, provide the
RAILS_ENABLE_TEST_LOG environment variable.See the dedicated CI configuration internals page.
See the dedicated CI configuration performance page.