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:
authorZeger-Jan van de Weg <git@zjvandeweg.nl>2019-02-27 16:14:58 +0300
committerZeger-Jan van de Weg <git@zjvandeweg.nl>2019-02-27 16:34:03 +0300
commit6139b8a8970cb75e1f7302896a0adc3a5d382f3b (patch)
treea1abffea236d7c0974434a590bd5b2dde6301b2c
parentd92c70a3e87a9fabccdbff5e88548b62e4f77efb (diff)
Test against Go 1.12
Go 1.12 was released this week, and this commit adds it to the CI matrix. By pushing it can be established if it succeeds out of the box, else it will be set to `allowed_to_fail`. Part of: https://gitlab.com/gitlab-org/gitaly/issues/1513
-rw-r--r--.gitlab-ci.yml15
1 files changed, 14 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index fee394b7c..2f483a3bf 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -78,6 +78,10 @@ verify:
script:
- make verify
+build:go1.12:
+ <<: *build_definition
+ image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.5-golang-1.12-git-2.18
+
build:go1.11:
<<: *build_definition
image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.5-golang-1.11-git-2.18
@@ -86,6 +90,10 @@ build:go1.10:
<<: *build_definition
image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.5-golang-1.10-git-2.18
+binaries_go1.12:
+ <<: *assemble_definition
+ image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.5-golang-1.12-git-2.18
+
binaries_go1.11:
<<: *assemble_definition
image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.5-golang-1.11-git-2.18
@@ -94,7 +102,12 @@ binaries_go1.10:
<<: *assemble_definition
image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.5-golang-1.10-git-2.18
-test:default:
+test:go1.12-git-2.18-ruby-2.5:
+ image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.5-golang-1.12-git-2.18
+ <<: *test_definition
+
+test:go1.11-git-2.18-ruby-2.5:
+ image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.5-golang-1.11-git-2.18
<<: *test_definition
test:go1.10-git2.18-ruby-2.5: