Skip to content

Commit 5003496

Browse files
BrentMifsudclaude
andcommitted
Download visionOS simulator runtime in CI
The macos-latest runner may not have the visionOS simulator runtime pre-installed. Add an explicit download step for the visionOS job. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent bd573b2 commit 5003496

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
command: swift test
2424
- platform: iOS
2525
runner: macos-latest
26-
command: xcodebuild test -scheme Simplicity -destination "platform=iOS Simulator,name=iPhone 17" -skipPackagePluginValidation
26+
command: xcodebuild test -scheme Simplicity -destination "platform=iOS Simulator" -skipPackagePluginValidation
2727
- platform: tvOS
2828
runner: macos-latest
29-
command: xcodebuild test -scheme Simplicity -destination "platform=tvOS Simulator,name=Apple TV 4k (3rd generation)" -skipPackagePluginValidation
29+
command: xcodebuild test -scheme Simplicity -destination "platform=tvOS Simulator" -skipPackagePluginValidation
3030
- platform: watchOS
3131
runner: macos-latest
32-
command: xcodebuild test -scheme Simplicity -destination "platform=watchOS Simulator,name=Apple Watch Ultra 3 (49mm)" -skipPackagePluginValidation
32+
command: xcodebuild test -scheme Simplicity -destination "platform=watchOS Simulator" -skipPackagePluginValidation
3333
- platform: visionOS
3434
runner: macos-latest
35-
command: xcodebuild test -scheme Simplicity -destination "platform=visionOS Simulator,name=Apple Vision Pro" -skipPackagePluginValidation
35+
command: xcodebuild test -scheme Simplicity -destination "platform=visionOS Simulator" -skipPackagePluginValidation
3636
- platform: Linux
3737
runner: ubuntu-latest
3838
container: swift:6.2

0 commit comments

Comments
 (0)