Skip to content

Commit ec6ecb3

Browse files
committed
Disable xcpretty
1 parent 4842c75 commit ec6ecb3

File tree

2 files changed

+4
-11
lines changed

2 files changed

+4
-11
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ matrix:
1919
- SCHEME="ObjectiveGit iOS"
2020

2121
before_install:
22-
- gem install xcpretty
23-
- gem install xcpretty-travis-formatter
22+
# - gem install xcpretty
23+
# - gem install xcpretty-travis-formatter
2424
install: script/bootstrap
2525
script: script/cibuild
2626

script/cibuild

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,6 @@ SCRIPT_DIR=$(cd "$(dirname "$0")" && pwd)
3737
XCWORKSPACE="ObjectiveGitFramework.xcworkspace"
3838
XCODE_OPTIONS=$(RUN_CLANG_STATIC_ANALYZER=NO ONLY_ACTIVE_ARCH=NO CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO)
3939

40-
if [ -n "$TRAVIS" ]; then
41-
# Use a special formatter when running on TravisCI
42-
XCPRETTY_FORMAT_OPTIONS="-f `xcpretty-travis-formatter`"
43-
else
44-
XCPRETTY_FORMAT_OPTIONS="--color"
45-
fi
46-
4740
##
4841
## Build Process
4942
##
@@ -59,7 +52,7 @@ if [ "$SCHEME" == "ObjectiveGit Mac" ]; then
5952
-scheme "$SCHEME" \
6053
${XCODE_OPTIONS[*]} \
6154
build test \
62-
2>&1 | xcpretty $XCPRETTY_FORMAT_OPTIONS
55+
2>&1
6356
elif [ "$SCHEME" == "ObjectiveGit iOS" ]; then
6457
echo "*** Prebuilding OpenSSL"
6558
"$SCRIPT_DIR/update_libssl_ios"
@@ -73,5 +66,5 @@ elif [ "$SCHEME" == "ObjectiveGit iOS" ]; then
7366
-sdk iphonesimulator \
7467
${XCODE_OPTIONS[*]} \
7568
build test \
76-
2>&1 | xcpretty $XCPRETTY_FORMAT_OPTIONS
69+
2>&1
7770
fi

0 commit comments

Comments
 (0)