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

Commit 7e70d5a

Browse files
committed
Use xcpretty instead of xctool.
1 parent bba093f commit 7e70d5a

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.travis.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
language: objective-c
2+
osx_image: xcode611
23
before_install:
3-
- brew update
4-
- brew reinstall xctool
4+
- gem install xcpretty -N
55
- gem install cocoapods --pre --quiet
66
- pod setup --silent
77
- pod repo update --silent
88
script:
99
- pod install
1010
- pod lib lint --quick ParseUI.podspec
1111
- 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
12+
- set -o pipefail
13+
- xcodebuild -workspace ParseUI.xcworkspace -scheme 'ParseUI' -sdk iphonesimulator build | xcpretty -c
14+
- xcodebuild -workspace ParseUI.xcworkspace -scheme 'ParseUIDemo' -sdk iphonesimulator build | xcpretty -c
15+
- xcodebuild -workspace ParseUI.xcworkspace -scheme 'ParseUIDemo-Swift' -sdk iphonesimulator build | xcpretty -c

0 commit comments

Comments
 (0)