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:
authorNick Thomas <nick@gitlab.com>2017-01-06 16:16:34 +0300
committerNick Thomas <nick@gitlab.com>2017-01-06 16:18:07 +0300
commit94d6af8194315045bee5b446f6590f21903d8024 (patch)
treeb535c6402296117a123c583aaa214ce0f1d72a1d /.gitlab-ci.yml
parent62b22d776ebf3115e0ed2ae46191f40ae71fc0a7 (diff)
Don't run lint on go1.5, but run everything on go1.6 and go1.7
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml13
1 files changed, 12 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 205463ff..0c282ccf 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -8,6 +8,17 @@ before_script:
- ln -sfv "$(pwd -P)" "$GODIR"
- cd "$GODIR"
-test:
+test:1.5:
+ image: golang:1.5
+ script:
+ - make verify-lite
+
+test:1.6:
+ image: golang:1.6
+ script:
+ - make verify
+
+test:1.7:
+ image: golang:1.7
script:
- make verify