gitlab-org--gitlab-foss/.gitlab/ci/qa.gitlab-ci.yml
Rémy Coutable 3ca11aefdd
Remove a useless '.except-docs-qa' extension in 'package-and-qa-manual'
Signed-off-by: Rémy Coutable <remy@rymai.me>
2019-09-03 14:18:33 +02:00

40 lines
907 B
YAML

.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
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