From bcb2482862191d58083e8f8b6838d74e5a81045f Mon Sep 17 00:00:00 2001 From: Dan Federman Date: Thu, 15 Jan 2026 18:50:57 -0800 Subject: [PATCH 1/4] Download platform --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7132576..b59c697 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,6 +61,9 @@ jobs: sudo xcrun simctl list sudo xcodebuild -downloadPlatform visionOS sudo xcodebuild -runFirstLaunch + - name: Download iOS + if: matrix.platforms == 'iOS_18,watchOS_11' + run: sudo xcodebuild -downloadPlatform iOS -buildVersion 22F77 - name: Build and Test Framework run: Scripts/build.swift ${{ matrix.platforms }} - name: Prepare Coverage Reports From 9be4d4da8b84e4b8b49f26705dd74b0bb2faefe4 Mon Sep 17 00:00:00 2001 From: Dan Federman Date: Thu, 15 Jan 2026 20:00:07 -0800 Subject: [PATCH 2/4] Update ci.yml --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b59c697..d4b189e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: ruby-version: '3.3.5' bundler-cache: true - name: Select Xcode Version - run: sudo xcode-select --switch /Applications/Xcode_26.1.1.app/Contents/Developer + run: sudo xcode-select --switch /Applications/Xcode_26.4.app/Contents/Developer - name: Download visionOS if: matrix.platforms == 'visionOS_2' run: | @@ -63,7 +63,11 @@ jobs: sudo xcodebuild -runFirstLaunch - name: Download iOS if: matrix.platforms == 'iOS_18,watchOS_11' - run: sudo xcodebuild -downloadPlatform iOS -buildVersion 22F77 + run: | + sudo xcodebuild -runFirstLaunch + sudo xcrun simctl list + sudo xcodebuild -downloadPlatform iOS -buildVersion 22F77 + sudo xcodebuild -runFirstLaunch - name: Build and Test Framework run: Scripts/build.swift ${{ matrix.platforms }} - name: Prepare Coverage Reports From a562246e3e5dabb19659ca55ab24a44a62041ee9 Mon Sep 17 00:00:00 2001 From: Dan Federman Date: Thu, 15 Jan 2026 22:51:50 -0800 Subject: [PATCH 3/4] oops --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d4b189e..114b719 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,7 @@ jobs: ruby-version: '3.3.5' bundler-cache: true - name: Select Xcode Version - run: sudo xcode-select --switch /Applications/Xcode_26.4.app/Contents/Developer + run: sudo xcode-select --switch /Applications/Xcode_26.1.1.app/Contents/Developer - name: Download visionOS if: matrix.platforms == 'visionOS_2' run: | From 1cb2b6d06d694178c68c575267dc438eae4ef24e Mon Sep 17 00:00:00 2001 From: Dan Federman Date: Thu, 15 Jan 2026 23:05:50 -0800 Subject: [PATCH 4/4] simplify --- .github/workflows/ci.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 114b719..4d48bb7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -29,7 +29,6 @@ jobs: sudo xcodebuild -runFirstLaunch sudo xcrun simctl list sudo xcodebuild -downloadPlatform visionOS - sudo xcodebuild -runFirstLaunch - name: Lint Podspec run: bundle exec pod lib lint --verbose --fail-fast --swift-version=6.2 spm-16: @@ -60,14 +59,12 @@ jobs: sudo xcodebuild -runFirstLaunch sudo xcrun simctl list sudo xcodebuild -downloadPlatform visionOS - sudo xcodebuild -runFirstLaunch - name: Download iOS if: matrix.platforms == 'iOS_18,watchOS_11' run: | sudo xcodebuild -runFirstLaunch sudo xcrun simctl list sudo xcodebuild -downloadPlatform iOS -buildVersion 22F77 - sudo xcodebuild -runFirstLaunch - name: Build and Test Framework run: Scripts/build.swift ${{ matrix.platforms }} - name: Prepare Coverage Reports