From cc627ea0df5e05a17db42b9f7b5a016bc1c8a288 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 11 Dec 2024 15:37:52 +0000 Subject: [PATCH] ci: Clear dependencies for dist-job MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Otherwise it never executes, because it’s waiting patiently for zero dependencies to complete. 🤦 Signed-off-by: Philip Withnall --- .gitlab-ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bc63d51d6..665d6527b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -971,6 +971,7 @@ dist-job: - .with-git image: "${FEDORA_IMAGE}" stage: build + needs: [] before_script: - !reference [".build-linux", "before_script"] - !reference [".with-git", "before_script"]