From 1eb11b9138d067fad03acebef771d74fcaf5235c Mon Sep 17 00:00:00 2001 From: Keith Ito Date: Sat, 16 Feb 2019 11:17:56 -0800 Subject: [PATCH 1/2] Update Travis config to xcode 10.1 --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index dada64c..70c4bb3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,9 +3,9 @@ # * https://github.com/supermarin/xcpretty#usage language: objective-c -osx_image: xcode9 +osx_image: xcode10.1 before_install: - gem install cocoapods xcpretty --no-rdoc --no-ri --no-document --quiet script: -- set -o pipefail && xcodebuild test -workspace SimpleAnimation.xcworkspace -scheme SimpleAnimation -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=11.0' ONLY_ACTIVE_ARCH=NO | xcpretty +- set -o pipefail && xcodebuild test -workspace SimpleAnimation.xcworkspace -scheme SimpleAnimation -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=12.1' ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint --quick From 183d6d2140eea79251f3e96f592fc99e96e980e1 Mon Sep 17 00:00:00 2001 From: Keith Ito Date: Sat, 16 Feb 2019 11:26:39 -0800 Subject: [PATCH 2/2] Add step to build with carthage to travis.yml --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 70c4bb3..94ee647 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,3 +9,4 @@ before_install: script: - set -o pipefail && xcodebuild test -workspace SimpleAnimation.xcworkspace -scheme SimpleAnimation -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=12.1' ONLY_ACTIVE_ARCH=NO | xcpretty - pod lib lint --quick +- carthage build --no-skip-current