diff mbox

[v2,19/21] travis/osx: build using more Xcode versions

Message ID 20170622033231.19344-20-f4bug@amsat.org
State New
Headers show

Commit Message

Philippe Mathieu-Daudé June 22, 2017, 3:32 a.m. UTC
currently default builder is based on Xcode 7.3.1:
    OS X 10.11 (darwin14.5.0)
    Apple LLVM version 7.3.0

add the oldest available Xcode (6.4):
    OS X 10.10 (darwin14.5.0)
    Apple LLVM 6.1.0 (based on LLVM 3.6.0svn)

and the newer available Xcode (8.3.3):
    OS X 10.12 (darwin16.6.0)
    Apple LLVM version 8.1.0

see https://docs.travis-ci.com/user/osx-ci-environment#os-x-version

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
 .travis.yml | 11 +++++++++++
 1 file changed, 11 insertions(+)
diff mbox

Patch

diff --git a/.travis.yml b/.travis.yml
index d007fdc9fb..880a057c78 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -126,6 +126,17 @@  matrix:
     - env: CONFIG=""
            CCACHE_SLOPPINESS="file_macro,time_macros,include_file_ctime,include_file_mtime"
       os: osx
+      osx_image: xcode6.4
+      compiler: clang
+    - env: CONFIG=""
+           CCACHE_SLOPPINESS="file_macro,time_macros,include_file_ctime,include_file_mtime"
+      os: osx
+      osx_image: xcode7.3
+      compiler: clang
+    - env: CONFIG=""
+           CCACHE_SLOPPINESS="file_macro,time_macros,include_file_ctime,include_file_mtime"
+      os: osx
+      osx_image: xcode8.3
       compiler: clang
     # Plain Trusty System Build
     - env: CONFIG="--disable-linux-user"