From 268204e5392ba54ccc7a745735fd170065ccdd6d Mon Sep 17 00:00:00 2001 From: Mike Maxwell Date: Sat, 15 Jul 2017 10:18:19 -0700 Subject: [PATCH 1/2] Specifying osx_image version to use a newer Xcode version --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index 2e90c58..7ce501e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,8 @@ # * https://github.com/supermarin/xcpretty#usage language: objective-c +osx_image: xcode8.3 + cache: cocoapods podfile: Example/Podfile before_install: From 5b0b2739ebfbad2dd877152ba20cefd993875537 Mon Sep 17 00:00:00 2001 From: Mike Maxwell Date: Sat, 15 Jul 2017 10:24:32 -0700 Subject: [PATCH 2/2] Using `build` command for now since no tests are being run so we don't need to specify a device to test on in the build command --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 7ce501e..2e6c185 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,4 +13,5 @@ before_install: install: - gem install xcpretty --no-rdoc --no-ri --no-document --quiet script: -- set -o pipefail && xcodebuild test -workspace Example/MaterialDesignSpinner.xcworkspace -scheme MaterialDesignSpinner-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c + # Using `build` command for now since no tests are being run so we don't need to specify a device to test on in the build command +- set -o pipefail && xcodebuild build -workspace Example/MaterialDesignSpinner.xcworkspace -scheme MaterialDesignSpinner-Example -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO | xcpretty -c