Skip to content

Commit 9853690

Browse files
committed
fix build
1 parent 5eab8ff commit 9853690

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,7 @@ elif [[ "$xcode_major" -lt 16 ]]; then
173173
else
174174
ios_flags=(
175175
-sdk 'iphonesimulator'
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.1'
176+
-destination 'platform=iOS Simulator,name=iPhone 16'
179177
)
180178
watchos_flags=(
181179
-sdk 'watchsimulator'
@@ -575,10 +573,12 @@ case "$product-$platform-$method" in
575573

576574
if check_secrets; then
577575
# Integration tests are only run on iOS to minimize flake failures.
576+
# TODO(ncooke3): Add back "${ios_flags[@]}". See #14657.
578577
RunXcodebuild \
579578
-workspace 'gen/FirebaseStorage/FirebaseStorage.xcworkspace' \
580579
-scheme "FirebaseStorage-Unit-integration" \
581-
"${ios_flags[@]}" \
580+
-sdk 'iphonesimulator' \
581+
-destination 'platform=iOS Simulator,name=iPhone 16,OS=18.3.1' \
582582
"${xcb_flags[@]}" \
583583
test
584584
fi

0 commit comments

Comments
 (0)