summaryrefslogtreecommitdiff
path: root/.gitlab/ci/qa.gitlab-ci.yml
blob: 8b182509eb4cddd9231b9a8fae64e87d7ddd5227 (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
.package-and-qa-base:
  image: ruby:2.6-alpine
  stage: qa
  before_script: []
  needs: ["build-qa-image", "gitlab:assets:compile pull-cache"]
  dependencies: []
  cache: {}
  variables:
    GIT_DEPTH: "1"
  retry: 0
  script:
    - source scripts/utils.sh
    - install_gitlab_gem
    - ./scripts/trigger-build omnibus
  only:
    - branches@gitlab-org/gitlab-ce
    - branches@gitlab-org/gitlab-ee

package-and-qa-manual:
  extends:
    - .package-and-qa-base
    - .no-docs-and-no-qa
  when: manual

package-and-qa:
  extends: .package-and-qa-base
  allow_failure: true
  only:
    - /(^qa[\/-].*|.*-qa$)/@gitlab-org/gitlab-ce
    - /(^qa[\/-].*|.*-qa$)/@gitlab-org/gitlab-ee