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:
authorZeger-Jan van de Weg <zegerjan@gitlab.com>2017-08-25 09:01:18 +0300
committerZeger-Jan van de Weg <zegerjan@gitlab.com>2017-08-25 09:01:18 +0300
commit532c246ba7f48a2262f99639d0aad2c30292fa0c (patch)
tree7267478b640894e6867b38002c3251004c0fc4ee /.gitlab-ci.yml
parent0173d4e6b6b17443155d121a9098d0e742b9c4e3 (diff)
Test target for golang 1.9
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml14
1 files changed, 11 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 8d056620..38084c3e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,4 @@
-image: golang:1.5
+image: golang:1.8
# Put the go sources in GOPATH
# This is required to make the vendor working
@@ -8,8 +8,16 @@ before_script:
- ln -sfv "$(pwd -P)" "$GODIR"
- cd "$GODIR"
-test:1.8:
- image: golang:1.8
+.test: &test
script:
- make verify
- make acceptance
+
+
+test:1.8:
+ <<: *test
+
+test:1.9:
+ image: golang:1.9
+ <<: *test
+ \ No newline at end of file