From 79cd8d6fb78fa79ab27d48e44be19725e2503b45 Mon Sep 17 00:00:00 2001 From: Dan Federman Date: Sun, 18 Jan 2026 17:55:54 -0800 Subject: [PATCH] Improve CI reliability by downloading simulator --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2bdace2..248ee28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,7 +38,12 @@ jobs: sudo xcodebuild -runFirstLaunch sudo xcrun simctl list sudo xcodebuild -downloadPlatform visionOS + - name: Download iOS + if: matrix.platforms == 'iOS_18,watchOS_11' + run: | sudo xcodebuild -runFirstLaunch + sudo xcrun simctl list + sudo xcodebuild -downloadPlatform iOS -buildVersion 22F77 - name: Build and Test Framework run: Scripts/build.swift ${{ matrix.platforms }} - name: Prepare Coverage Reports