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

qa.gitlab-ci.yml « ci « .gitlab - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9c021b23db671ae2150039847c46946d81f21304 (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
.package-and-qa-base:
  image: ruby:2.6-alpine
  stage: qa
  dependencies: []
  variables:
    GIT_DEPTH: "1"
  retry: 0
  script:
    - source scripts/utils.sh
    - install_gitlab_gem
    - ./scripts/trigger-build omnibus
  only:
    refs:
      - branches@gitlab-org/gitlab-ce
      - branches@gitlab-org/gitlab-ee

package-and-qa-manual:
  extends: .package-and-qa-base
  except:
    refs:
      - master
      - /(^docs[\/-].+|.+-docs$)/
      - /(^qa[\/-].*|.*-qa$)/
  when: manual
  needs: ["build-qa-image", "gitlab:assets:compile pull-cache"]

package-and-qa-manual:master:
  extends: .package-and-qa-base
  only:
    refs:
      - master
  when: manual
  needs: ["build-qa-image", "gitlab:assets:compile"]

package-and-qa:
  extends: .package-and-qa-base
  only:
    refs:
      - /(^qa[\/-].*|.*-qa$)/@gitlab-org/gitlab-ce
      - /(^qa[\/-].*|.*-qa$)/@gitlab-org/gitlab-ee
  needs: ["build-qa-image", "gitlab:assets:compile pull-cache"]
  allow_failure: true