Skip to content

Commit 2d9cdef

Browse files
committed
Attempt to run on 18.3 sim
1 parent f65c5cf commit 2d9cdef

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

scripts/build.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ function CheckUnexpectedFailures() {
151151
fi
152152
}
153153

154+
# TODO(ncooke3): Xcode 16 – remove -lt 15 after migration
154155
if [[ "$xcode_major" -lt 15 ]]; then
155156
ios_flags=(
156157
-sdk 'iphonesimulator'
@@ -172,7 +173,9 @@ elif [[ "$xcode_major" -lt 16 ]]; then
172173
else
173174
ios_flags=(
174175
-sdk 'iphonesimulator'
175-
-destination 'platform=iOS Simulator,name=iPhone 16'
176+
# Avoid iOS 18.4's networking issues:
177+
# - https://developer.apple.com/forums/thread/777999
178+
-destination 'platform=iOS Simulator,name=iPhone 16,OS=18.3'
176179
)
177180
watchos_flags=(
178181
-sdk 'watchsimulator'

0 commit comments

Comments
 (0)