From 542fc29808e5db3b29952092e4d2b08656242543 Mon Sep 17 00:00:00 2001 From: Bogdan Poplauschi Date: Tue, 4 Nov 2014 13:44:45 +0200 Subject: [PATCH] Another try with Travis CI, this time no clean action, as it fails with xcodebuild build clean Scheme Tests is not currently configured for the clean action. --- .travis.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 80585636..e92031a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,14 +14,13 @@ before_install: script: - pod lib lint - - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage' -sdk iphonesimulator clean build - - 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 + - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage' -sdk iphonesimulator build + - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage+WebP' -sdk iphonesimulator build + - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage+MKAnnotation' -sdk iphonesimulator build - - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage Demo' clean build + - xctool -workspace SDWebImage.xcworkspace -scheme 'SDWebImage Demo' -sdk iphonesimulator build - cd Tests - pod update - cd .. - - xctool -workspace SDWebImage.xcworkspace -scheme 'Tests' clean test \ No newline at end of file + - xctool -workspace SDWebImage.xcworkspace -scheme 'Tests' -sdk iphonesimulator test \ No newline at end of file