File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 25
25
IOS_DEST : " platform=iOS Simulator,name=iPhone 15,OS=latest"
26
26
TVOS_DEST : " platform=tvOS Simulator,name=Apple TV,OS=latest"
27
27
WATCHOS_DEST : " platform=watchOS Simulator,name=Apple Watch Series 9 (41mm),OS=latest"
28
+ VISIONOS_DEST : " platform=visionOS Simulator,name=Apple Vision Pro,OS=latest"
28
29
MACOS_DEST : " platform=macOS,arch=x86_64"
29
30
30
31
jobs :
88
89
-destination "$WATCHOS_DEST" \
89
90
CODE_SIGN_IDENTITY="-" | xcpretty -c
90
91
92
+ test-visionOS :
93
+ name : visionOS unit test
94
+ runs-on : macos-14
95
+ steps :
96
+ - name : git checkout
97
+ uses : actions/checkout@v4
98
+
99
+ - name : test
100
+ run : |
101
+ set -o pipefail
102
+ xcodebuild clean test \
103
+ -project "$PROJECT" \
104
+ -scheme "$SCHEME" \
105
+ -destination "$VISIONOS_DEST" \
106
+ CODE_SIGN_IDENTITY="-" | xcpretty -c
107
+
91
108
test-macOS :
92
109
name : macOS unit test
93
110
runs-on : macos-14
You can’t perform that action at this time.
0 commit comments