From e1cb1b324e3fcb9fde6a8e113534fd177a2cc5a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michel=20D=C3=A4nzer?= Date: Thu, 14 Mar 2024 11:57:49 +0100 Subject: [PATCH] ci: Make test stage jobs not depend on earlier stage jobs There's no dependency, they can start anytime. Part-of: --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a7a1603b1..6e521a9d3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -127,6 +127,7 @@ meson-dist: check-commits: extends: - .fdo.ci-fairy + needs: [] stage: test script: - ci-fairy check-commits --junit-xml=results.xml @@ -145,6 +146,7 @@ check-commits: check-merge-request: extends: - .fdo.ci-fairy + needs: [] stage: test rules: - if: $CI_PIPELINE_SOURCE == 'merge_request_event'