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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLin Jen-Shin <jen-shin@gitlab.com>2024-01-16 11:49:51 +0300
committerLin Jen-Shin <jen-shin@gitlab.com>2024-01-16 12:35:20 +0300
commit37d1d48266df7fa81d8b897b576203e671cfb56c (patch)
tree6023a1ab4890ddf2f6a080e26649787a9b4906a9
parent96b75e53b61c476029d510270daa1d5dfc444a09 (diff)
Do not pass Gitaly variables to Rails pipeline
-rw-r--r--.gitlab-ci.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e321f29ca..ef608ef89 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -514,9 +514,14 @@ rails-specs:
project: gitlab-org/gitlab
branch: "gitaly-ci-jobs-$CI_PIPELINE_IID" # Using $RAILS_BRANCH_FOR_JOB directly fails
strategy: depend
+ inherit:
+ variables: false # Otherwise variables will be messed up
variables:
GITALY_TEST: "true"
- FORCE_GITLAB_CI: "true"
+ ENABLE_RSPEC: "true"
+ ENABLE_RSPEC_UNIT: "true"
+ ENABLE_RSPEC_INTEGRATION: "true"
+ ENABLE_RSPEC_SYSTEM: "true"
rules:
- when: manual
allow_failure: true