From 954fd0e41575fa41fadc46db6942e11b68c0c885 Mon Sep 17 00:00:00 2001 From: Yuri Strot Date: Tue, 9 Jun 2020 22:21:01 +0700 Subject: [PATCH] Use the latest Xcode in Travis config --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index ddaa8b2c..e6d6286c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,12 +1,12 @@ language: swift -osx_image: xcode10.2 +osx_image: xcode11.5 branches: only: - master script: - - set -o pipefail && xcodebuild test -project Macaw.xcodeproj -scheme 'Macaw iOS' -sdk iphonesimulator ONLY_ACTIVE_ARCH=NO -destination 'platform=iOS Simulator,OS=12.2,name=iPhone X' | xcpretty; + - set -o pipefail && xcodebuild test -project Macaw.xcodeproj -scheme 'Macaw iOS' -sdk iphonesimulator13.5 ONLY_ACTIVE_ARCH=NO -destination 'platform=iOS Simulator,OS=13.5,name=iPhone X' | xcpretty; - set -o pipefail && xcodebuild test -project Macaw.xcodeproj -scheme 'MacawOSX' ONLY_ACTIVE_ARCH=NO | xcpretty;