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

.gitlab-ci.yml - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 38084c3efdb2b959a7aac44b852d181ffb42db41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
image: golang:1.8

# Put the go sources in GOPATH
# This is required to make the vendor working
before_script:
- GODIR=$GOPATH/src/gitlab.com/gitlab-org/gitlab-pages
- mkdir -p "$(dirname "$GODIR")"
- ln -sfv "$(pwd -P)" "$GODIR"
- cd "$GODIR"

.test: &test
  script:
  - make verify
  - make acceptance


test:1.8:
  <<: *test
  
test:1.9:
  image: golang:1.9
  <<: *test