From 9ba1c0db4eee07d5a12010db744dd9acdd14be11 Mon Sep 17 00:00:00 2001 From: Laurent Cozic Date: Fri, 1 Aug 2025 13:30:27 +0100 Subject: [PATCH] Chore: Also build ARM64 image for Transcribe --- .github/scripts/run_ci.sh | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/scripts/run_ci.sh b/.github/scripts/run_ci.sh index a554fb100e..b2aea1f8c3 100755 --- a/.github/scripts/run_ci.sh +++ b/.github/scripts/run_ci.sh @@ -49,15 +49,17 @@ DOCKER_IMAGE_PLATFORM="linux/amd64" # a release RUN_TESTS=0 -if [ "$IS_SERVER_RELEASE" = 0 ] && [ "$IS_DESKTOP_RELEASE" = 0 ]; then +if [ "$IS_SERVER_RELEASE" = 0 ] && [ "$IS_DESKTOP_RELEASE" = 0 ] && [ "$IS_TRANSCRIBE_RELEASE" = 0 ]; then RUN_TESTS=1 fi -if [ "$RUNNER_ARCH" == "ARM64" ] && [ "$IS_SERVER_RELEASE" == "0" ]; then - # We exit now because nothing works properly with the ARM64 architecture. - # We only proceed if building the server image. - echo "Running on ARM64 and not trying to build server image - early exit" - exit 0 +if [ "$RUNNER_ARCH" == "ARM64" ]; then + if [ "$IS_SERVER_RELEASE" == "0" ] && [ "$IS_TRANSCRIBE_RELEASE" == "0" ]; then + # We exit now because nothing works properly with the ARM64 architecture. + # We only proceed if building the server image. + echo "Running on ARM64 and not trying to build server image - early exit" + exit 0 + fi fi if [ "$RUNNER_ARCH" == "ARM64" ]; then