From ef9a2798a7baa0e13327d0e438fe89049b60e5a8 Mon Sep 17 00:00:00 2001 From: Bogdan Poplauschi Date: Tue, 4 Nov 2014 12:16:25 +0200 Subject: [PATCH] Updated Travis CI script, replaced xcpretty with xctool --- .travis.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2666baf..4036145 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,6 @@ before_install: - env - locale - gem install cocoapods --quiet - - gem install xcpretty --quiet - pod --version - pod setup --silent - pod repo update --silent @@ -15,15 +14,15 @@ before_install: script: - pod lib lint - - xcodebuild -workspace SDWebImage.xcworkspace -scheme 'SDWebImage' -sdk iphonesimulator clean build | xcpretty -c; exit ${PIPESTATUS[0]} + - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage' -sdk iphonesimulator clean build - - xcodebuild -workspace SDWebImage.xcworkspace -scheme 'SDWebImage' -sdk iphoneos clean build | xcpretty -c; exit ${PIPESTATUS[0]} - - xcodebuild -workspace SDWebImage.xcworkspace -scheme 'SDWebImage+WebP' -sdk iphoneos clean build | xcpretty -c; exit ${PIPESTATUS[0]} - - xcodebuild -workspace SDWebImage.xcworkspace -scheme 'SDWebImage+MKAnnotation' -sdk iphoneos clean build | xcpretty -c; exit ${PIPESTATUS[0]} + - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage' -sdk iphoneos clean build + - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage+WebP' -sdk iphoneos clean build + - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage+MKAnnotation' -sdk iphoneos clean build - - xcodebuild -workspace SDWebImage.xcworkspace -scheme 'SDWebImage Demo' -sdk iphoneos clean build | xcpretty -c; exit ${PIPESTATUS[0]} + - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage Demo' clean build - cd Tests - pod update - cd .. - - xcodebuild -workspace SDWebImage.xcworkspace -scheme 'Tests' -sdk iphoneos clean test | xcpretty -c; exit ${PIPESTATUS[0]} \ No newline at end of file + - xctool -workspace SDWebImage.xcworkspace -scheme 'Tests' clean test \ No newline at end of file