File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -173,9 +173,7 @@ elif [[ "$xcode_major" -lt 16 ]]; then
173
173
else
174
174
ios_flags=(
175
175
-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'
179
177
)
180
178
watchos_flags=(
181
179
-sdk ' watchsimulator'
@@ -575,10 +573,12 @@ case "$product-$platform-$method" in
575
573
576
574
if check_secrets; then
577
575
# Integration tests are only run on iOS to minimize flake failures.
576
+ # TODO(ncooke3): Add back "${ios_flags[@]}". See #14657.
578
577
RunXcodebuild \
579
578
-workspace ' gen/FirebaseStorage/FirebaseStorage.xcworkspace' \
580
579
-scheme " FirebaseStorage-Unit-integration" \
581
- " ${ios_flags[@]} " \
580
+ -sdk ' iphonesimulator' \
581
+ -destination ' platform=iOS Simulator,name=iPhone 16,OS=18.3.1' \
582
582
" ${xcb_flags[@]} " \
583
583
test
584
584
fi
You can’t perform that action at this time.
0 commit comments