Skip to content

Commit 9abde5b

Browse files
committed
ci(SundialKit): download iOS and watchOS platforms before archive
The archive-demo job selects Xcode 26.5 but the macos-26 image does not ship the iOS/watchOS runtimes preinstalled, causing xcodebuild to fail with "iOS 26.x is not installed". Add explicit -downloadPlatform steps for iOS and watchOS (both demo apps embed watchOS targets). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 441954a commit 9abde5b

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/sundial-demo.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,12 @@ jobs:
113113
- name: Select Xcode
114114
run: sudo xcode-select -s "/Applications/Xcode_26.5.app"
115115

116+
- name: Download iOS platform
117+
run: xcodebuild -downloadPlatform iOS
118+
119+
- name: Download watchOS platform
120+
run: xcodebuild -downloadPlatform watchOS
121+
116122
- name: Setup SSH for AppCerts repository
117123
uses: webfactory/ssh-agent@v0.9.0
118124
with:

0 commit comments

Comments
 (0)