Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Commit 4ec43c1

Browse files
committed
Use xcpretty instead of xctool.
1 parent bba093f commit 4ec43c1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.travis.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
language: objective-c
22
before_install:
3-
- brew update
4-
- brew reinstall xctool
3+
- gem install xcpretty -N
54
- gem install cocoapods --pre --quiet
65
- pod setup --silent
76
- pod repo update --silent
87
script:
98
- pod install
109
- pod lib lint --quick ParseUI.podspec
1110
- pod lib lint --use-libraries ParseUI.podspec
12-
- xctool -workspace ParseUI.xcworkspace -scheme 'ParseUI' -sdk iphonesimulator build
13-
- xctool -workspace ParseUI.xcworkspace -scheme 'ParseUIDemo' -sdk iphonesimulator build
14-
- xctool -workspace ParseUI.xcworkspace -scheme 'ParseUIDemo-Swift' -sdk iphonesimulator build
11+
- set -o pipefail
12+
- xcodebuild -workspace ParseUI.xcworkspace -scheme 'ParseUI' -sdk iphonesimulator build | xcpretty -c
13+
- xcodebuild -workspace ParseUI.xcworkspace -scheme 'ParseUIDemo' -sdk iphonesimulator build | xcpretty -c
14+
- xcodebuild -workspace ParseUI.xcworkspace -scheme 'ParseUIDemo-Swift' -sdk iphonesimulator build | xcpretty -c

0 commit comments

Comments
 (0)