Skip to content

Commit afc1abb

Browse files
committed
No xcpretty or frameworks run
1 parent fd06955 commit afc1abb

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

scripts/build.sh

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,12 @@ firestore_emulator="${scripts_dir}/run_firestore_emulator.sh"
7474
function 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() {
8989
ios_flags=(
9090
-sdk 'iphonesimulator'
9191
-destination 'platform=iOS Simulator,name=iPhone 7'
92+
# -destination 'platform=iOS Simulator,name=iPhone 7,OS=12.0'
9293
)
9394
macos_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

0 commit comments

Comments
 (0)