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:
authorSami Hiltunen <shiltunen@gitlab.com>2022-05-18 17:22:06 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2022-05-25 10:30:04 +0300
commit79ba2dd6338fe1c9199c0f202ac635f687d3e1c4 (patch)
tree007d517822021c64f85333fed7c3dac44c4ad0c3
parent1af2af2cd508bc23463efb56c50896595333b801 (diff)
Remove unnecessary dependency from QA jobs
The QA jobs in our pipeline do not depend on any of the other stages. The QA stage has been the last one which has thus delayed the execution of jobs in that stage. Since we are now modeling the dependencies with the 'needs', this commit removes the unneeded dependency.
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 28de23595..b161dd5b8 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -349,7 +349,7 @@ secret_detection:
- if: $CI_COMMIT_TAG
trigger-qa:
- needs: [ test ]
+ needs: []
stage: qa
trigger:
project: gitlab-org/build/omnibus-gitlab-mirror
@@ -370,7 +370,7 @@ trigger-qa:
allow_failure: true
qa:nightly-praefect-migration-test:
- needs: [ test ]
+ needs: []
stage: qa
trigger:
project: gitlab-org/quality/praefect-migration-testing