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: b1115836a466cf3fd33f6bc3b6610fb594994733 (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
90
91
92
.tests-common:
  extends: .common
  stage: test
  needs: ['download deps']
  artifacts:
    reports:
      junit: junit-test-report.xml

.tests-matrix:
  extends: .tests-common
  image: golang:${GO_VERSION}
  parallel:
    matrix:
      - GO_VERSION: ["1.16", "1.17", "1.18"]

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

tests-acceptance:
  extends: .tests-matrix
  script:
    - echo "Running just the acceptance tests...."
    - make acceptance

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

cover:
  extends: .tests-common
  script:
    - echo "Running coverage testing"
    - make cover
  coverage: '/total:.+\(statements\).+\d+\.\d+/'
  artifacts:
    paths:
      - coverage.html

code_quality:
  extends: .tests-common
  image: golangci/golangci-lint:v1.44.0
  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
  before_script:
    # overwrites the before_script in .common since we don't need to run make cisetup for this job
    - echo skipping
  script:
    - make deps-check

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

package-and-qa:
  stage: test
  trigger:
    project: 'gitlab-org/build/omnibus-gitlab-mirror'
    branch: 'master'
    strategy: depend
  inherit:
    variables: false
  variables:
    GITLAB_PAGES_VERSION: $CI_MERGE_REQUEST_SOURCE_BRANCH_SHA
    TOP_UPSTREAM_SOURCE_PROJECT: $CI_PROJECT_PATH
    TOP_UPSTREAM_SOURCE_REF: $CI_COMMIT_REF_NAME
    TOP_UPSTREAM_SOURCE_JOB: $CI_JOB_URL
  allow_failure: true
  rules:
    # Run only for merge requests
    - if: '$CI_MERGE_REQUEST_IID'
      when: manual
    - when: never
  needs: []