From 0f74bf8822be094b9ff804c82ef671137622a51c Mon Sep 17 00:00:00 2001 From: Greg Bolsinga Date: Thu, 21 May 2020 11:35:12 -0700 Subject: [PATCH] Do not use xcpretty in builds so that CI errors are logged. --- build.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.sh b/build.sh index 9701dfb9c..6d8b04170 100755 --- a/build.sh +++ b/build.sh @@ -35,7 +35,7 @@ function build_example { -sdk "$SDK" \ -destination "$PLATFORM" \ -derivedDataPath "$DERIVED_DATA_PATH" \ - build | xcpretty -s + build elif [ -f "${example}/Cartfile" ]; then echo "Using Carthage" local_repo=`pwd` @@ -50,7 +50,7 @@ function build_example { -scheme Sample \ -sdk "$SDK" \ -destination "$PLATFORM" \ - build | xcpretty -s + build cd ../.. fi @@ -80,7 +80,7 @@ tests|all) -scheme AsyncDisplayKit \ -sdk "$SDK" \ -destination "$PLATFORM" \ - build-for-testing test | xcpretty -s + build-for-testing test success="1" ;; @@ -99,7 +99,7 @@ tests_listkit) -scheme ASDKListKitTests \ -sdk "$SDK" \ -destination "$PLATFORM" \ - build-for-testing test | xcpretty -s + build-for-testing test success="1" ;; @@ -198,7 +198,7 @@ life-without-cocoapods|all) -scheme "Life Without CocoaPods" \ -sdk "$SDK" \ -destination "$PLATFORM" \ - build | xcpretty -s + build success="1" ;; @@ -210,7 +210,7 @@ framework|all) -scheme Sample \ -sdk "$SDK" \ -destination "$PLATFORM" \ - build | xcpretty -s + build success="1" ;;