File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change 21
21
with :
22
22
xcode-version : " 15.4.0"
23
23
- name : Run iOS tests
24
- run : make test-ios PLATFORM="iOS Simulator,name=iPhone 15"
24
+ run : make test-ios-17
25
25
- name : Run tvOS tests
26
26
run : make test-tvos
27
27
36
36
with :
37
37
xcode-version : " 16.1.0"
38
38
- name : Run iOS tests
39
- run : make test-ios PLATFORM="iOS Simulator,name=iPhone 16"
39
+ run : make test-ios-18
40
40
- name : Run tvOS tests
41
41
run : make test-tvos
Original file line number Diff line number Diff line change 1
- PLATFORM ?= "iOS Simulator,name=iPhone 16"
1
+ test-ios-18 :
2
+ set -o pipefail && \
3
+ xcodebuild test \
4
+ -project Gifu.xcodeproj \
5
+ -scheme Gifu \
6
+ -destination " platform=iOS Simulator,name=iPhone 16,OS=18.1" \
7
+ | xcbeautify
2
8
3
- test-ios :
9
+ test-ios-17 :
4
10
set -o pipefail && \
5
11
xcodebuild test \
6
12
-project Gifu.xcodeproj \
7
13
-scheme Gifu \
8
- -destination platform=$( PLATFORM ) \
14
+ -destination " platform=iOS Simulator,name=iPhone 15,OS=17.5 " \
9
15
| xcbeautify
10
16
11
17
test-tvos :
12
18
set -o pipefail && \
13
19
xcodebuild test \
14
20
-project Gifu.xcodeproj \
15
21
-scheme Gifu \
16
- -destination platform=" tvOS Simulator,name=Apple TV" \
22
+ -destination " platform=tvOS Simulator,name=Apple TV" \
17
23
| xcbeautify
You can’t perform that action at this time.
0 commit comments