From 2fedc0680d78674a7848ca02e60314bf64de7a41 Mon Sep 17 00:00:00 2001 From: Bogdan Poplauschi Date: Wed, 29 Aug 2018 17:41:45 +0300 Subject: [PATCH] Using Xcode 9.4 image for travis + trying a different simulator destination (maybe this fixes the build) --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index cd75a26..59135fe 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: objective-c -osx_image: xcode9 +osx_image: xcode9.4 env: global: @@ -8,10 +8,10 @@ env: addons: ssh_known_hosts: github.com - + notifications: email: false - + before_install: - env - locale @@ -32,7 +32,7 @@ script: - echo Build example - pod install --project-directory=Example - - xcodebuild build -workspace SDWebImageWebPCoder.xcworkspace -scheme SDWebImageWebPCoderExample -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 8' -configuration Debug | xcpretty -c + - xcodebuild build -workspace SDWebImageWebPCoder.xcworkspace -scheme SDWebImageWebPCoderExample -sdk iphonesimulator -destination 'name=iPhone 6s' -configuration Debug | xcpretty -c # - echo Run the tests # - xcodebuild test -workspace Example/SDImageWebPCoderExample.xcworkspace -scheme 'SDImageWebPCoderTests' -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 8' -configuration Debug | xcpretty -c