From 7266e936921881c7e7c34cfe4df7c1d96d97ab09 Mon Sep 17 00:00:00 2001 From: Nick Cooke Date: Mon, 29 Sep 2025 11:26:37 -0400 Subject: [PATCH] fix(ci): install missing iOS 18.2 simulator runtime The macos-15 runner image lacks the iOS 18.2 simulator runtime for Xcode 16.2, causing CI jobs to fail. This adds a workflow step to explicitly download the required simulator, ensuring tests can run with the minimum supported Xcode version. --- .github/workflows/google-utilities.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/google-utilities.yml b/.github/workflows/google-utilities.yml index ca90a9f..fc4822e 100644 --- a/.github/workflows/google-utilities.yml +++ b/.github/workflows/google-utilities.yml @@ -80,6 +80,9 @@ jobs: run: | sudo xcode-select -s '/Applications/Xcode_16.2.app/Contents/Developer' xcodebuild -list + - name: Install iOS Simulator + if: matrix.target == 'iOS' + run: xcodebuild -downloadPlatform iOS - name: iOS Unit Tests run: scripts/third_party/travis/retry.sh scripts/build.sh GoogleUtilities-Package ${{ matrix.target }} spm