From 0407cb7b91059f54e58b8f5cab7994b1d317d5c5 Mon Sep 17 00:00:00 2001 From: Florent Pruvost <florent.pruvost@inria.fr> Date: Mon, 25 Sep 2023 12:34:12 +0200 Subject: [PATCH] ci: dependencies key is no longer necessary when needs key is used (means we only depend on this job and its artifacts) --- .gitlab-ci.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7ed2271..ed05b66 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -76,7 +76,6 @@ hqr_test_linux: stage: test tags: ["docker", "large"] extends: .only-master-mr - dependencies: [hqr_build_linux] needs: [hqr_build_linux] variables: SYSTEM: linux @@ -98,7 +97,6 @@ hqr_test_macosx: stage: test tags: ['macosx'] extends: .only-master-mr - dependencies: [hqr_build_macosx] needs: [hqr_build_macosx] variables: SYSTEM: macosx @@ -120,7 +118,6 @@ hqr_test_windows: stage: test tags: ['windows'] extends: .only-master-mr - dependencies: [hqr_build_windows] needs: [hqr_build_windows] variables: SYSTEM: windows @@ -149,7 +146,6 @@ sonarqube: - if: $CI_PIPELINE_SOURCE == "merge_request_event" && $CI_MERGE_REQUEST_SOURCE_BRANCH_NAME !~ /^notest-.*$/ when: manual allow_failure: true - dependencies: [hqr_build_linux,hqr_test_linux] needs: [hqr_build_linux,hqr_test_linux] script: - ./.gitlab/analysis.sh -- GitLab