File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 62
62
file_to_build : ${{ env.file_to_build }}
63
63
run : |
64
64
# Clean and build the iOS target
65
- xcodebuild clean build -scheme "$scheme" -$filetype "$file_to_build" -destination "platform=iOS Simulator,OS=latest, name=iPhone " | xcpretty && exit ${PIPESTATUS[0]}
65
+ xcodebuild clean build -scheme "$scheme" -$filetype "$file_to_build" -destination "platform=iOS Simulator,name=Any iOS Simulator Device " | xcpretty && exit ${PIPESTATUS[0]}
66
66
67
67
- name : Test
68
68
env :
71
71
file_to_build : ${{ env.file_to_build }}
72
72
run : |
73
73
# Run tests
74
- xcodebuild test -scheme "$scheme" -$filetype "$file_to_build" -destination "platform=iOS Simulator,OS=latest, name=iPhone " -testPlan "tictactoeTests" | xcpretty && exit ${PIPESTATUS[0]}
74
+ xcodebuild test -scheme "$scheme" -$filetype "$file_to_build" -destination "platform=iOS Simulator,name=Any iOS Simulator Device " -testPlan "tictactoeTests" | xcpretty && exit ${PIPESTATUS[0]}
75
75
76
76
- name : Build for macOS
77
77
env :
You can’t perform that action at this time.
0 commit comments