From e8a54c550698531614b6e16984cb967ada7019e3 Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Tue, 26 Aug 2025 08:14:01 +0900 Subject: [PATCH] Attempt to fix iOS build Similar sort of fix applied to all of our other repositories. --- .github/workflows/build.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3fc4697..4f3ca3e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -106,12 +106,17 @@ jobs: build-ios: name: ios - runs-on: macos-latest + runs-on: macos-15 steps: - uses: actions/checkout@v4 with: submodules: recursive + # https://github.com/dotnet/macios/issues/19157 + # https://github.com/actions/runner-images/issues/12758 + - name: Use Xcode 16.4 + run: sudo xcode-select -switch /Applications/Xcode_16.4.app + - name: Build (iOS) run: | modules=("SDL3" "SDL3_image" "SDL3_ttf" "SDL3_mixer")