From 2e0dad4f3a2253762783172c458836e65cb64305 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Fri, 15 Aug 2025 03:39:01 +0000 Subject: [PATCH] fix(ci): select xcode 16 in ios workflow The iOS workflow was failing with an 'iOS 18.0 Platform Not Installed' error. This change explicitly selects Xcode 16 on the macos-15 runner to ensure the correct version of Xcode and the iOS 18.0 SDK are used for the build. --- .github/workflows/ios.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ios.yaml b/.github/workflows/ios.yaml index 80d627a7e827..cfbd566e0bca 100644 --- a/.github/workflows/ios.yaml +++ b/.github/workflows/ios.yaml @@ -90,6 +90,8 @@ jobs: /usr/local/share/powershell \ /usr/share/dotnet df -h / + - name: 'Select Xcode 16' + run: sudo xcode-select -s /Applications/Xcode_16.app/Contents/Developer - name: 'Build Application' working-directory: ${{ matrix.working_directory }} run: |