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-02-19 10:49:32 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-02-19 10:52:42 +0300
commit2239d09e893aecfa04a10952851a2a20610993ec (patch)
treeb22aebc0b25db720ac56bd42fa7f3e41e7a417ab
parent83ae5a899a1f6005eb9e60ba170022337a36b7b4 (diff)
ci: Test against Git v2.30.1
Our merge request pipelines currently only test against Git v2.29.0, and given that this is our minimum required version, we should continue testing against it. But in order to ensure that we're compatible against a broader range of versions and to enable a smooth upgrade path in case we're going to bump the minimum version, we should also test against newer git versions. Add tests against the latest released version to improve our test coverage.
-rw-r--r--.gitlab-ci.yml5
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3b33778be..9eda1a126 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -120,6 +120,8 @@ build:
matrix:
- GO_VERSION: [ "1.14", "1.15" ]
GIT_VERSION: [ "v2.29.0" ]
+ - GO_VERSION: "1.15"
+ GIT_VERSION: "v2.30.1"
binaries:
<<: *cache_definition
@@ -166,6 +168,9 @@ test:
- GO_VERSION: "1.15"
GIT_VERSION: "v2.29.0"
TARGET: [ test-with-proxies, test-with-praefect, race-go ]
+ - GO_VERSION: "1.15"
+ GIT_VERSION: "v2.30.1"
+ TARGET: test
nightly:git:
<<: *test_definition