summaryrefslogtreecommitdiff
path: root/.gitlab/ci/global.gitlab-ci.yml
blob: b91509e7728d7989f7682c4b08644442ee68c522 (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
.dedicated-runner:
  retry:
    max: 2  # This is confusing but this means "3 runs at max".
    when:
      - unknown_failure
      - api_failure
      - runner_system_failure
  tags:
    - gitlab-org

.default-cache: &default-cache
  key: "debian-stretch-ruby-2.6.3-node-12.x"
  paths:
    - vendor/ruby
    - .yarn-cache/
    - vendor/gitaly-ruby

.dedicated-runner-default-cache:
  extends: .dedicated-runner
  cache:
    <<: *default-cache

# Jobs that only need to pull cache
.dedicated-pull-cache-job:
  extends: .dedicated-runner
  cache:
    <<: *default-cache
    policy: pull
  stage: test

.no-docs:
  except:
    changes:
      - "doc/**/*.md"

.no-docs-and-no-qa:
  except:
    refs:
      - /(^qa[\/-].*|.*-qa$)/
    changes:
      - "doc/**/*.md"

.dedicated-no-docs-pull-cache-job:
  extends:
    - .dedicated-pull-cache-job
    - .no-docs

.dedicated-no-docs-and-no-qa-pull-cache-job:
  extends:
    - .dedicated-pull-cache-job
    - .no-docs-and-no-qa

# Jobs that do not need a DB
.dedicated-no-docs-no-db-pull-cache-job:
  extends: .dedicated-no-docs-pull-cache-job
  variables:
    SETUP_DB: "false"

# Jobs that need a dedicated runner, with no cache
.dedicated-no-docs:
  extends:
    - .dedicated-runner
    - .no-docs

.single-script-job-dedicated-runner:
  extends: .dedicated-runner
  image: ruby:2.6-alpine
  stage: test
  cache: {}
  dependencies: []
  variables:
    GIT_STRATEGY: none
  before_script:
    # We don't clone the repo by using GIT_STRATEGY: none and only download the
    # single script we need here so it's much faster than cloning.
    - export SCRIPT_NAME="${SCRIPT_NAME:-$CI_JOB_NAME}"
    - apk add --update openssl
    - wget $CI_PROJECT_URL/raw/$CI_COMMIT_SHA/scripts/$SCRIPT_NAME
    - chmod 755 $(basename $SCRIPT_NAME)