File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments