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

test.yml « ci « .gitlab - gitlab.com/gitlab-org/gitlab-pages.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26107b85e53a8b1a4820fe587fdb04b26c569a83 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
.tests-common:
  extends: .go-mod-cache
  stage: test
  tags:
    - gitlab-org-docker
  needs: ['download deps']
  artifacts:
    reports:
      junit: junit-test-report.xml

.tests-unit:
  extends: .tests-common
  script:
    - echo "Running all unit tests without daemonizing..."
    - make test ARGS='-short'

.tests-acceptance-tmpdir:
  extends: .tests-common
  script:
    - echo "Running just the acceptance tests daemonized (tmpdir)...."
    - TEST_DAEMONIZE=tmpdir make acceptance

.tests-acceptance-inplace:
  extends: .tests-common
  script:
    - echo "Running just the acceptance tests daemonized (inplace)...."
    - TEST_DAEMONIZE=inplace make acceptance

test:1.15:
  extends: .tests-unit
  image: golang:1.15

test-acceptance:1.15:
  extends: .tests-acceptance-tmpdir
  image: golang:1.15

test-acceptance-inplace:1.15:
  extends: .tests-acceptance-inplace
  image: golang:1.15

test:1.16:
  extends: .tests-unit
  image: golang:1.16

test-acceptance:1.16:
  extends: .tests-acceptance-tmpdir
  image: golang:1.16

test-acceptance-inplace:1.16:
  extends: .tests-acceptance-inplace
  image: golang:1.16

race:
  extends: .tests-common
  script:
    - echo "Running race detector"
    - make setup
    - make race

cover:
  extends: .tests-common
  script:
    - make generate-mocks
    - make cover
  coverage: '/total:.+\(statements\).+\d+\.\d+/'
  artifacts:
    paths:
      - coverage.html

code_quality:
  extends: .tests-common
  image: golangci/golangci-lint:v1.41.1
  variables:
    REPORT_FILE: gl-code-quality-report.json
    LINT_FLAGS: "--color never --deadline 15m"
    OUT_FORMAT: code-climate
  script:
    - golangci-lint run ./... --out-format ${OUT_FORMAT} ${LINT_FLAGS} | tee ${REPORT_FILE}
  timeout: 15 minutes
  artifacts:
    reports:
      codequality: ${REPORT_FILE}
    paths:
      - ${REPORT_FILE}

check deps:
  extends: .tests-common
  script:
    - make deps-check