From 9cab74b9a85ef58bc577bcb1d59bfdcc35ac2a2c Mon Sep 17 00:00:00 2001
From: Griefed <griefed@griefed.de>
Date: Fri, 17 Jan 2025 23:22:38 +0100
Subject: [PATCH] build: Deprecate armv7

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

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9080781..bb5be31 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -33,7 +33,7 @@ test docker:
     - docker buildx build
       --push
       --no-cache
-      --platform linux/amd64,linux/arm64,linux/arm/v7
+      --platform linux/amd64,linux/arm64
       --tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop-$CI_COMMIT_SHORT_SHA"
       --tag "ghcr.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop-$CI_COMMIT_SHORT_SHA" .
   except:
@@ -42,6 +42,10 @@ test docker:
     variables:
       - '$CI_COMMIT_TITLE =~ /^RELEASE:.+$/ || $CI_PIPELINE_SOURCE == "schedule"'
 
+test semantic-release:
+  stage: test
+
+
 release:
   needs: ['test docker']
   stage: release
-- 
GitLab