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: 5cc17b88f7aa6779a93e91c7f9a7f44cf1f1ce52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
image: golang:1.8

.test: &test
  script:
  - make setup
  - make verify
  - make cover
  - echo "Running all tests without daemonizing..."
  - make test
  - echo "Running just the acceptance tests daemonized...."
  - TEST_DAEMONIZE=1 make acceptance
  artifacts:
    paths:
      - bin/gitlab-pages
      - coverage.html

test:1.8:
  <<: *test

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

test:1.10:
  image: golang:1.10
  <<: *test