From cb92ec278e1e43c60703ab7c183989afecb791a3 Mon Sep 17 00:00:00 2001 From: Steveice10 <1269164+Steveice10@users.noreply.github.com> Date: Thu, 1 Feb 2024 06:39:29 -0800 Subject: [PATCH] ci: Move non-x86_64 macOS jobs to M1 systems. (#7406) --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1e501ee56..ad0665c5b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,7 +59,7 @@ jobs: name: ${{ env.OS }}-${{ env.TARGET }} path: artifacts/ macos: - runs-on: macos-13 + runs-on: ${{ (matrix.target == 'x86_64' && 'macos-13') || 'macos-14' }} strategy: matrix: target: ["x86_64", "arm64"] @@ -92,7 +92,7 @@ jobs: path: ${{ env.OS }}-${{ env.TARGET }} key: ${{ runner.os }}-${{ matrix.target }}-${{ github.sha }}-${{ github.run_id }}-${{ github.run_attempt }} macos-universal: - runs-on: macos-13 + runs-on: macos-14 needs: macos env: OS: macos @@ -233,7 +233,7 @@ jobs: name: ${{ env.OS }}-${{ env.TARGET }} path: src/android/app/artifacts/ ios: - runs-on: macos-13 + runs-on: macos-14 if: ${{ !startsWith(github.ref, 'refs/tags/') }} env: CCACHE_DIR: ${{ github.workspace }}/.ccache