Skip to content

Commit

Permalink
Do not use xcpretty in builds so that CI errors are logged. (TextureG…
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Bolsinga authored and rcancro committed May 28, 2020
1 parent 9f925f7 commit 9b9fd06
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand All @@ -58,7 +58,7 @@ function build_example {
-scheme Sample \
-sdk "$SDK" \
-destination "$PLATFORM" \
build | xcpretty -s
build

cd ../..
fi
Expand Down Expand Up @@ -88,7 +88,7 @@ tests|all)
-scheme AsyncDisplayKit \
-sdk "$SDK" \
-destination "$PLATFORM" \
build-for-testing test | xcpretty -s
build-for-testing test
success="1"
;;

Expand All @@ -107,7 +107,7 @@ tests_listkit)
-scheme ASDKListKitTests \
-sdk "$SDK" \
-destination "$PLATFORM" \
build-for-testing test | xcpretty -s
build-for-testing test
success="1"
;;

Expand Down Expand Up @@ -206,7 +206,7 @@ life-without-cocoapods|all)
-scheme "Life Without CocoaPods" \
-sdk "$SDK" \
-destination "$PLATFORM" \
build | xcpretty -s
build
success="1"
;;

Expand All @@ -218,7 +218,7 @@ framework|all)
-scheme Sample \
-sdk "$SDK" \
-destination "$PLATFORM" \
build | xcpretty -s
build
success="1"
;;

Expand Down

0 comments on commit 9b9fd06

Please sign in to comment.