debian-mirror-gitlab/.gitlab/ci/qa.gitlab-ci.yml

30 lines
683 B
YAML
Raw Normal View History

2019-10-12 21:52:04 +05:30
.package-and-qa-base:
2019-09-04 21:01:54 +05:30
image: ruby:2.6-alpine
stage: review # So even if review-deploy failed we can still run this
2019-07-31 22:56:46 +05:30
before_script: []
dependencies: []
cache: {}
variables:
GIT_DEPTH: "1"
retry: 0
script:
- source scripts/utils.sh
- install_gitlab_gem
- ./scripts/trigger-build omnibus
only:
2019-10-12 21:52:04 +05:30
- branches@gitlab-org/gitlab-ce
- branches@gitlab-org/gitlab-ee
package-and-qa:
extends: .package-and-qa-base
when: manual
except:
- /(^qa[\/-].*|.*-qa$)/
package-and-qa-always:
extends: .package-and-qa-base
allow_failure: true
only:
- /(^qa[\/-].*|.*-qa$)/@gitlab-org/gitlab-ce
- /(^qa[\/-].*|.*-qa$)/@gitlab-org/gitlab-ee