Do not use xcpretty in builds so that CI errors are logged. (#1830)

This commit is contained in:
Greg Bolsinga
2020-05-21 16:09:30 -07:00
committed by GitHub
parent 6eb5c88720
commit ddc2dfa113
+6 -6
View File
@@ -43,7 +43,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`
@@ -58,7 +58,7 @@ function build_example {
-scheme Sample \
-sdk "$SDK" \
-destination "$PLATFORM" \
build | xcpretty -s
build
cd ../..
fi
@@ -88,7 +88,7 @@ tests|all)
-scheme AsyncDisplayKit \
-sdk "$SDK" \
-destination "$PLATFORM" \
build-for-testing test | xcpretty -s
build-for-testing test
success="1"
;;
@@ -107,7 +107,7 @@ tests_listkit)
-scheme ASDKListKitTests \
-sdk "$SDK" \
-destination "$PLATFORM" \
build-for-testing test | xcpretty -s
build-for-testing test
success="1"
;;
@@ -206,7 +206,7 @@ life-without-cocoapods|all)
-scheme "Life Without CocoaPods" \
-sdk "$SDK" \
-destination "$PLATFORM" \
build | xcpretty -s
build
success="1"
;;
@@ -218,7 +218,7 @@ framework|all)
-scheme Sample \
-sdk "$SDK" \
-destination "$PLATFORM" \
build | xcpretty -s
build
success="1"
;;