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-09-16 14:58:42 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-09-20 17:22:32 +0300
commit864e2361f00347dc033c7ce4396ec159794cdc4f (patch)
tree557e660ed97d9f0bcec728940289252f46c98cd1
parente6374eaf67addb939516b5ad5d242418a6f2b688 (diff)
ci: Drop jobs using Go 1.15
We're about to phase out support for Go 1.15, so this commit drops all build jobs which use this version.
-rw-r--r--.gitlab-ci.yml12
1 files changed, 6 insertions, 6 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 242f16730..793573b56 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,7 +5,7 @@ stages:
- qa
default:
- image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.7-golang-1.15-git-2.31
+ image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.7-golang-1.16-git-2.31
tags:
- gitlab-org
@@ -143,13 +143,13 @@ build:
# These definitions are for the non-default Git versions. We do not want
# to apply any additional Git patches on top of those given that they may
# not cleanly apply and thus set GIT_PATCHES="".
- - GO_VERSION: [ "1.15", "1.16", "1.17" ]
+ - GO_VERSION: [ "1.16", "1.17" ]
GIT_VERSION: [ "v2.31.1", "v2.32.0" ]
GIT_PATCHES: [ "" ]
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.15", "1.16", "1.17" ]
+ - GO_VERSION: [ "1.16", "1.17" ]
GIT_VERSION: [ "v2.33.0" ]
RUBY_VERSION: [ "2.7" ]
@@ -172,7 +172,7 @@ binaries:
expire_in: 6 months
parallel:
matrix:
- - GO_VERSION: [ "1.15", "1.16", "1.17" ]
+ - GO_VERSION: [ "1.16", "1.17" ]
test:
<<: *test_definition
@@ -195,13 +195,13 @@ test:
# These definitions are for the non-default Git versions. We do not want
# to apply any additional Git patches on top of those given that they may
# not cleanly apply and thus set GIT_PATCHES="".
- - GO_VERSION: [ "1.15", "1.16", "1.17" ]
+ - GO_VERSION: [ "1.16", "1.17" ]
GIT_VERSION: [ "v2.31.1", "v2.32.0" ]
GIT_PATCHES: [ "" ]
TARGET: test
# These definitions are for the default Git version where we want to
# apply our default set of Git patches.
- - GO_VERSION: [ "1.15", "1.16", "1.17" ]
+ - GO_VERSION: [ "1.16", "1.17" ]
GIT_VERSION: [ "v2.33.0" ]
TARGET: test
- GO_VERSION: "1.17"