From 9ae4c8ba1c83cb0fc4093e751757cb07a0ba26e3 Mon Sep 17 00:00:00 2001 From: OpenSauce04 Date: Fri, 10 Jul 2026 14:12:37 +0100 Subject: [PATCH] ci: Build ARM64 macOS before x86_64 macOS Should produce faster build failures when something is wrong due to the native architecture building faster --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index defc17dbb..a945c18cc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -158,10 +158,10 @@ jobs: ${{ runner.os }}- - name: Install tools run: brew install ccache ninja spirv-tools - - name: Build (x86_64) - run: BUILD_ARCH=x86_64 ./.ci/macos.sh - name: Build (arm64) run: BUILD_ARCH=arm64 ./.ci/macos.sh + - name: Build (x86_64) + run: BUILD_ARCH=x86_64 ./.ci/macos.sh - name: Create universal app run: ./.ci/macos-universal.sh - name: Prepare for packing