From 13779011a07d7f963618112d10bc101aa1eeef05 Mon Sep 17 00:00:00 2001
From: kaiyou <dev@kaiyou.fr>
Date: Fri, 1 Dec 2023 20:50:29 +0100
Subject: [PATCH] Fix CI syntax

---
 .gitlab-ci.yml | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 3c5f7ec..feaec5b 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -35,13 +35,17 @@ compile:
 
 upload:
   stage: test
+  needs:
+    - compile
   <<: *ansible-job
   script:
     - ansible $ANSIBLE_ARGS -m include_tasks -a file=ansible/ciupload.yaml localhost
   
 test-cluster:
   stage: test
-  needs: upload
+  needs:
+    - upload
+  dependencies: []
   <<: *ansible-job
   parallel:
     matrix:
-- 
GitLab