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:
Diffstat (limited to '.gitlab/ci/setup.gitlab-ci.yml')
-rw-r--r--.gitlab/ci/setup.gitlab-ci.yml14
1 files changed, 8 insertions, 6 deletions
diff --git a/.gitlab/ci/setup.gitlab-ci.yml b/.gitlab/ci/setup.gitlab-ci.yml
index cd7ca4d30bf..21e48975e28 100644
--- a/.gitlab/ci/setup.gitlab-ci.yml
+++ b/.gitlab/ci/setup.gitlab-ci.yml
@@ -6,7 +6,6 @@ cache gems:
- .default-retry
- .default-cache
- .default-before_script
- - .except-docs
stage: test
dependencies: ["setup-test-env"]
needs: ["setup-test-env"]
@@ -19,15 +18,17 @@ cache gems:
- vendor/cache
only:
refs:
- - master@gitlab-org/gitlab-ce
- - master@gitlab-org/gitlab-ee
+ - master
- tags
+ variables:
+ - $CI_SERVER_HOST == "gitlab.com" && $CI_PROJECT_NAMESPACE == "gitlab-org"
.minimal-job:
extends:
- .default-tags
- .default-retry
- - .except-docs-qa
+ - .default-only
+ - .only-code-changes
dependencies: []
gitlab_git_test:
@@ -40,5 +41,6 @@ no_ee_check:
script:
- scripts/no-ee-check
only:
- refs:
- - branches@gitlab-org/gitlab-ce
+ variables:
+ - $CI_SERVER_HOST == "gitlab.com" && $CI_PROJECT_NAME == "gitlab-ce"
+ - $CI_SERVER_HOST == "dev.gitlab.org" && $CI_PROJECT_NAME == "gitlabhq"