From d3392f69a9b3d1a7572f44e3ba27ef503409f4ae Mon Sep 17 00:00:00 2001 From: Till-JS <101404291+Till-JS@users.noreply.github.com> Date: Wed, 11 Feb 2026 17:51:26 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix(ci):=20disable=20ARM64=20for?= =?UTF-8?q?=20storage-backend=20due=20to=20QEMU=20issues?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Storage-backend build was failing on ARM64 due to QEMU emulation "Illegal instruction" crash when building native dependencies. Same approach used for matrix-mana-bot and matrix-tts-bot. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 855604fbf..de09b016a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1069,7 +1069,8 @@ jobs: with: context: . file: apps/storage/apps/backend/Dockerfile - platforms: linux/amd64,linux/arm64 + # Note: arm64 disabled due to QEMU emulation issues with native deps + platforms: linux/amd64 push: true tags: ${{ steps.meta.outputs.tags }} cache-from: type=gha