From b87a6a8c298c4518f2bcadbf9e7d65a3656ea7d8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net>
Date: Thu, 21 Mar 2024 20:08:49 -0400
Subject: [PATCH] Don't group cleanup either, and don't make it wait.

---
 .gitlab-ci-unix.yml | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/.gitlab-ci-unix.yml b/.gitlab-ci-unix.yml
index 1d5527ecb7..6491145898 100644
--- a/.gitlab-ci-unix.yml
+++ b/.gitlab-ci-unix.yml
@@ -687,10 +687,11 @@ spec:
 ###########
 # Cleanup #
 ###########
-"cleanup [$[[ inputs.os ]]-$[[ inputs.platform ]]]":
+"$[[ inputs.os ]]-$[[ inputs.platform ]] cleanup":
   extends:
     - .$[[ inputs.os ]]-cleanup
   script:
     - rm -rf "/tmp/gitlab-runner/$[[ inputs.os ]]-$[[ inputs.platform ]]-${CI_PIPELINE_ID}"
-  dependencies:
-    - "$[[ inputs.os ]]-$[[ inputs.platform ]] [jsdoor]"
+  needs:
+    - "$[[ inputs.os ]]-$[[ inputs.platform ]] js-testsuite"
+      artifacts: false
-- 
GitLab