From 2ac806c4ca4fd6436966272ce169f4874facc97d Mon Sep 17 00:00:00 2001
From: Martin Heistermann <git@mheistermann.de>
Date: Sun, 16 Feb 2025 17:45:06 +0100
Subject: [PATCH] limit test to bookworm, trixie not supported yet

---
 .gitlab-ci.yml | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 051a699..7673f75 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -26,13 +26,6 @@ ensure-job-added:
     - |
       route="${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/pipelines/${CI_PIPELINE_ID}/jobs"
       echo "$route"
-      count=`curl --silent "$route" | jq 'map(select(.name | contains("pref-debian-trixie-x64"))) | length'`
-      if [ "$count" != "1" ]; then
-        curl --silent "$route" | jq '.'
-        exit 1; else
-        echo "Component Job present"
-      fi
-      # yeah yeah, this is stupid: please make it better :)
       count=`curl --silent "$route" | jq 'map(select(.name | contains("pref-debian-bookworm-x64"))) | length'`
       if [ "$count" != "1" ]; then
         curl --silent "$route" | jq '.'
-- 
GitLab