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

gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Wiedler <iwiedler@gitlab.com>2020-05-12 15:18:37 +0300
committerIgor Wiedler <iwiedler@gitlab.com>2020-05-12 15:18:37 +0300
commit055979c57343507d0bc14e8b64fd8fb0c44c5e32 (patch)
tree1ee22c4c4e26d715c346f3365c351c73e7370a76 /.gitlab-ci.yml
parentf7df688571720f616ac80311d2b75b57e9e5d112 (diff)
re-introduce support for go 1.12 as requested by @nolith
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index f2bcba20..33f20858 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,7 +20,7 @@ workflow:
- if: '$CI_COMMIT_BRANCH =~ /^security\//'
default:
- image: golang:1.13
+ image: golang:1.12
tags:
- gitlab-org
@@ -81,6 +81,10 @@ verify:
paths:
- coverage.html
+test:1.12:
+ extends: .tests
+ image: golang:1.12
+
test:1.13:
extends: .tests
image: golang:1.13