File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -74,12 +74,12 @@ firestore_emulator="${scripts_dir}/run_firestore_emulator.sh"
7474function RunXcodebuild() {
7575 echo xcodebuild " $@ "
7676
77- xcodebuild " $@ " | xcpretty ; result=$?
77+ xcodebuild " $@ " ; result=$?
7878 if [[ $result == 65 ]]; then
7979 echo " xcodebuild exited with 65, retrying" 1>&2
8080 sleep 5
8181
82- xcodebuild " $@ " | xcpretty ; result=$?
82+ xcodebuild " $@ " ; result=$?
8383 fi
8484 if [[ $result != 0 ]]; then
8585 exit $result
@@ -89,6 +89,7 @@ function RunXcodebuild() {
8989ios_flags=(
9090 -sdk ' iphonesimulator'
9191 -destination ' platform=iOS Simulator,name=iPhone 7'
92+ # -destination 'platform=iOS Simulator,name=iPhone 7,OS=12.0'
9293)
9394macos_flags=(
9495 -sdk ' macosx'
@@ -236,12 +237,12 @@ case "$product-$method-$platform" in
236237 ;;
237238
238239 InAppMessaging-xcodebuild-iOS)
239- RunXcodebuild \
240- -workspace ' InAppMessaging/Example/InAppMessaging-Example-iOS.xcworkspace' \
241- -scheme ' InAppMessaging_Example_iOS' \
242- " ${xcb_flags[@]} " \
243- build \
244- test
240+ # RunXcodebuild \
241+ # -workspace 'InAppMessaging/Example/InAppMessaging-Example-iOS.xcworkspace' \
242+ # -scheme 'InAppMessaging_Example_iOS' \
243+ # "${xcb_flags[@]}" \
244+ # build \
245+ # test
245246
246247 cd InAppMessaging/Example
247248 sed -i -e ' s/use_frameworks/\#use_frameworks/' Podfile
You can’t perform that action at this time.
0 commit comments