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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStan Hu <stanhu@gmail.com>2019-08-26 23:41:55 +0300
committerStan Hu <stanhu@gmail.com>2019-08-26 23:44:37 +0300
commitb881c7725366a18034bf795548718e5d4874bd6e (patch)
tree9a19601c169b44a6922c081a46944215655e2498 /.gitlab/ci/qa.gitlab-ci.yml
parentf68730239765cefb565ba3242992813ca5d5be75 (diff)
Reduce complexity of CI files
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to '.gitlab/ci/qa.gitlab-ci.yml')
-rw-r--r--.gitlab/ci/qa.gitlab-ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.gitlab/ci/qa.gitlab-ci.yml b/.gitlab/ci/qa.gitlab-ci.yml
index 69b932801ad..ac2a70dda0b 100644
--- a/.gitlab/ci/qa.gitlab-ci.yml
+++ b/.gitlab/ci/qa.gitlab-ci.yml
@@ -1,10 +1,8 @@
.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
@@ -19,7 +17,9 @@
- master
package-and-qa-manual:
- extends: .package-and-qa-base
+ extends:
+ - .package-and-qa-base
+ - .except-docs-qa
when: manual
except:
- master