Travis CI: bump OS X and XCode version.
authorLei Zhang <antiagainst@google.com>
Fri, 24 Jun 2016 19:48:34 +0000 (15:48 -0400)
committerLei Zhang <antiagainst@google.com>
Fri, 24 Jun 2016 21:16:00 +0000 (17:16 -0400)
.travis.yml

index fc6cd1a..7a97971 100644 (file)
@@ -10,6 +10,10 @@ os:
 sudo: required
 dist: trusty
 
+# Use OS X 10.11 with XCode 7.2
+# https://docs.travis-ci.com/user/osx-ci-environment/#OS-X-Version
+osx_image: xcode7.2
+
 env:
   # Each line is a set of environment variables set before a build.
   # Thus each line represents a different build configuration.
@@ -39,8 +43,8 @@ addons:
       - ninja-build
 
 before_install:
-  # Install ninja on Mac OS X.
-  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install ninja; fi
+  # Install cmake & ninja on Mac OS X.
+  - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update && brew install cmake ninja; fi
 
 before_script:
   - git clone https://github.com/KhronosGroup/SPIRV-Headers.git external/spirv-headers