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:26:19 +0300
committerSami Hiltunen <shiltunen@gitlab.com>2022-05-23 10:53:13 +0300
commit53b306219fc889f47dc7601fd038a73208e256d8 (patch)
tree6e69c3c6503c5588222b69ea18668e33dd34c000
parentdc726704a3a473f479c56f1b607205c31f99f994 (diff)
Remove unnecessary dependencies in the testing stage
license_scanning, gemnasium-dependency_scanning and secret_detection don't use the caches from the earlier build stage, yet they depend currently on the build stage. Remove the unnecessary dependencies so they can be executed earlier.
-rw-r--r--.gitlab-ci.yml12
1 files changed, 3 insertions, 9 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b161dd5b8..3cac1a579 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -306,9 +306,7 @@ gosec-sast:
- if: $CI_COMMIT_TAG
license_scanning:
- needs:
- - job: build
- artifacts: false
+ needs: []
cache: []
before_script:
- sudo apt-get update
@@ -323,9 +321,7 @@ license_scanning:
LICENSE_FINDER_CLI_OPTS: '--aggregate-paths=. ruby'
gemnasium-dependency_scanning:
- needs:
- - job: build
- artifacts: false
+ needs: []
cache: []
rules:
- if: $DEPENDENCY_SCANNING_DISABLED
@@ -335,9 +331,7 @@ gemnasium-dependency_scanning:
- if: $CI_COMMIT_TAG
secret_detection:
- needs:
- - job: build
- artifacts: false
+ needs: []
cache: []
inherit:
default: false