From f3e05add4fd3d8cddfe879a73ec2f7f670b20b28 Mon Sep 17 00:00:00 2001 From: rentzsch Date: Wed, 30 Jan 2019 11:53:30 -0700 Subject: [PATCH] =?UTF-8?q?[TEST]=20Update=20Travis=20to=20Xcode=2010.1=20?= =?UTF-8?q?and=20use=20the=20=E2=80=9Ccurrent=E2=80=9D=20MacOSX=20SDK=20in?= =?UTF-8?q?stead=20of=20hard-coding=20the=20version=20number=20(which=20I?= =?UTF-8?q?=20think=20is=20new=20with=20Xcode=2010=20dir=20layout).?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .travis.yml | 2 +- test/Rakefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b105ef28..d6fc144b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: objective-c -osx_image: xcode9 +osx_image: xcode10.1 #xcode_project: mogenerator.xcodeproj #xcode_scheme: mogenerator script: cd test && rake diff --git a/test/Rakefile b/test/Rakefile index 5898b5f5..7547ee7b 100644 --- a/test/Rakefile +++ b/test/Rakefile @@ -1,5 +1,5 @@ #!/usr/bin/ruby -# Copyright (c) 2006-2016 Jonathan 'Wolf' Rentzsch: http://rentzsch.com +# Copyright (c) 2006-2019 Jonathan 'Wolf' Rentzsch: http://rentzsch.com # Some rights reserved: http://opensource.org/licenses/mit # http://github.com/rentzsch/mogenerator @@ -12,7 +12,7 @@ end #============================== # Variables #============================== -OSX_SDK="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.13.sdk" +OSX_SDK="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk" OSX_VERSION="10.10" LINKED_FRAMEWORKS="-framework Foundation -framework AppKit -framework CoreData"