Skip to content

Instantly share code, notes, and snippets.

@nlutsenko
Last active October 30, 2015 08:48
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save nlutsenko/4565ee8c79b1a835bab6 to your computer and use it in GitHub Desktop.
Save nlutsenko/4565ee8c79b1a835bab6 to your computer and use it in GitHub Desktop.
Make Travis-CI run your tests using different versions of Xcode
language: objective-c
os: osx
matrix:
include:
- osx_image: xcode7.0
- osx_image: xcode7.1
- osx_image: xcode7.2b1
@nlutsenko
Copy link
Author

Created for @mattyohe

@nlutsenko
Copy link
Author

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