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:
authorToon Claes <toon@gitlab.com>2023-07-26 15:57:39 +0300
committerToon Claes <toon@gitlab.com>2023-07-26 15:57:39 +0300
commit0e64ff8f968bfac083794d29c26d566d124582bc (patch)
treea15f091f599ae1649bc48da690f59d2d327fb607 /.gitlab-ci.yml
parent11684939f65c0dbda04004a9313f031ce828b61c (diff)
parenta635297eebf65525cf0f7b707b2c79db636cf9e8 (diff)
Merge branch 'pks-ci-manual-rails-specs' into 'master'
ci: Mark all Rails specs jobs as manual See merge request https://gitlab.com/gitlab-org/gitaly/-/merge_requests/6116 Merged-by: Toon Claes <toon@gitlab.com> Approved-by: Toon Claes <toon@gitlab.com> Co-authored-by: Patrick Steinhardt <psteinhardt@gitlab.com>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml10
1 files changed, 9 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b97e7ed6a..d7cd2d9a4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -528,7 +528,9 @@ rails-specs:
variables:
GITALY_TEST: "true"
FORCE_GITLAB_CI: "true"
- allow_failure: true
+ rules:
+ - when: manual
+ allow_failure: true
rails-specs-cleanup:
stage: qa
@@ -540,6 +542,9 @@ rails-specs-cleanup:
environment:
name: merge-requests/$RAILS_BRANCH_FOR_JOB
action: stop
+ rules:
+ - when: manual
+ allow_failure: true
cleanup-rails-spec-test-env:
needs: ["rails-specs-cleanup"]
@@ -551,6 +556,9 @@ cleanup-rails-spec-test-env:
- |
ENV_ID=$(curl -s --request GET --header "PRIVATE-TOKEN: $GITALY_PROJECT_TOKEN" "https://gitlab.com/api/v4/projects/2009901/environments" --data-urlencode "name=merge-requests/$RAILS_BRANCH_FOR_JOB" | jq '.[0].id')
curl --fail -s --request DELETE --header "PRIVATE-TOKEN: $GITALY_PROJECT_TOKEN" "https://gitlab.com/api/v4/projects/2009901/environments/$ENV_ID"
+ rules:
+ - when: manual
+ allow_failure: true
build-package-and-qa:
needs: []