We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8720ae2 commit 29d12dcCopy full SHA for 29d12dc
1 file changed
.github/workflows/ci.yml
@@ -34,15 +34,18 @@ jobs:
34
updateProjectFiles: true
35
36
- name: Show SDKS
37
- run: xcodebuild -showsdks
+ run: |
38
+ xcodebuild -showsdks
39
+ xcrun simctl list devices
40
41
- name: Run Unit Tests
42
run: |
43
xcodebuild test \
44
-project "Sample Project/CheckBox.xcodeproj" \
45
-scheme CheckBoxTests \
- -destination 'platform=iOS Simulator,name=iPhone 16' \
46
+ -destination 'platform=iOS Simulator,OS=18.5,name=iPhone 16' \
47
-resultBundlePath TestResults
48
+ timeout-minutes: 10
49
50
# In XCode 12 it will build the simulator with a arm64 CPU. We don't want this as when
51
# we try to combine the simulator with the device build using Lipo we will get an error
0 commit comments