Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-11-23 13:23:37 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-11-23 13:27:23 +0300
commit01744af674d3c8ec6faac75505de9129c102bef6 (patch)
treee15c20205e5eeb843637861701e112daadfc4415 /.gitlab-ci.yml
parent49edda3493f4495477686c4edf49d3c702e99eb6 (diff)
ci: Remove default versions from job matrices
We needlessly include the default versions of some of our components in job matrices. This makes it harder to spot which locations need updates and which locations don't. Remove these default versions to avoid this.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 2 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index cfe49d78c..82f208221 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -134,11 +134,9 @@ build:
# These definitions are for the non-default Git versions.
#- GO_VERSION: [ "1.16", "1.17" ]
# GIT_VERSION: [ ]
- # RUBY_VERSION: [ "2.7" ]
# These definitions are for the default Git version where we want to
# apply our default set of Git patches.
- GO_VERSION: [ "1.16", "1.17" ]
- RUBY_VERSION: [ "2.7" ]
binaries:
<<: *cache_definition
@@ -187,8 +185,7 @@ test:
# apply our default set of Git patches.
- GO_VERSION: [ "1.16", "1.17" ]
TARGET: test
- - GO_VERSION: "1.17"
- TARGET: [ test-with-proxies, test-with-praefect, race-go ]
+ - TARGET: [ test-with-proxies, test-with-praefect, race-go ]
nightly:git:
<<: *test_definition
@@ -199,8 +196,7 @@ nightly:git:
- make all ${TARGET}
parallel:
matrix:
- - GO_VERSION: "1.17"
- GIT_VERSION: [ "master", "next" ]
+ - GIT_VERSION: [ "master", "next" ]
TARGET: [ test, test-with-proxies, test-with-praefect ]
rules:
- if: '$CI_PIPELINE_SOURCE == "schedule"'