Skip to content

Commit 34558e8

Browse files
committed
Update iOS-tvOS.yml
1 parent e46a20c commit 34558e8

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/iOS-tvOS.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,20 @@ jobs:
1616

1717
- name: Select Xcode version
1818
run: sudo xcode-select -s '/Applications/Xcode_26.1.app/Contents/Developer'
19-
19+
- name: Clear Xcode Simulators List
20+
run: sudo xcrun simctl list > /dev/null
21+
2022
- name: Swift Version
2123
run: swift --version
2224

25+
# Install before building, so we don't downloadthe in case of previous failure
26+
- name: Install iOS Xcode Component
27+
run: sudo xcodebuild -downloadPlatform iOS
2328
- name: Build iOS using Xcode
2429
run: xcodebuild -scheme GateEngine -destination generic/platform=iOS
30+
31+
# Install before building, so we don't downloadthe in case of previous failure
32+
- name: Install tvOS Xcode Component
33+
run: sudo xcodebuild -downloadPlatform tvOS
2534
- name: Build tvOS using Xcode
2635
run: xcodebuild -scheme GateEngine -destination generic/platform=tvOS

0 commit comments

Comments
 (0)