Last active
October 30, 2015 08:48
-
-
Save nlutsenko/4565ee8c79b1a835bab6 to your computer and use it in GitHub Desktop.
Make Travis-CI run your tests using different versions of Xcode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: objective-c | |
os: osx | |
matrix: | |
include: | |
- osx_image: xcode7.0 | |
- osx_image: xcode7.1 | |
- osx_image: xcode7.2b1 |
Crazy version of the same hack that I used at https://github.com/ParsePlatform/Parse-SDK-iOS-OSX looong time ago.
language: objective-c
os: osx
matrix:
include:
- osx_image: xcode6.4
env:
- TEST_TYPE=ios
- SDK_VERSION=8.4
- osx_image: xcode6.4
env:
- TEST_TYPE=osx
- SDK_VERSION=10.10
- osx_image: xcode6.4
env: TEST_TYPE=deployment
- osx_image: xcode6.4
env: TEST_TYPE=starters
- osx_image: xcode6.4
env: TEST_TYPE=podspecs
- osx_image: xcode7
env:
- TEST_TYPE=ios
- SDK_VERSION=9.0
- osx_image: xcode7
env:
- TEST_TYPE=osx
- SDK_VERSION=10.11
- osx_image: xcode7
env: TEST_TYPE=podspecs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Created for @mattyohe