diff mbox

[RFC,for-2.11,v3,15/16] travis/osx: build using more Xcode versions

Message ID 20170809202712.6951-16-f4bug@amsat.org
State New
Headers show

Commit Message

Philippe Mathieu-Daudé Aug. 9, 2017, 8:27 p.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/reference/osx/#OS-X-Version

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

Comments

Alex Bennée Sept. 15, 2017, 3:54 p.m. UTC | #1
Philippe Mathieu-Daudé <f4bug@amsat.org> writes:

> 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

I reckon oldest stable and newest stable is enough for coverage.

>
> see https://docs.travis-ci.com/user/reference/osx/#OS-X-Version
>
> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
> ---
>  .travis.yml | 12 ++++++++++++
>  1 file changed, 12 insertions(+)
>
> diff --git a/.travis.yml b/.travis.yml
> index 7c93a10c5f..cd59570062 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -117,6 +117,18 @@ matrix:
>        compiler: gcc
>      - env: CONFIG=""
>        os: osx
> +      # older available: OS X 10.10
> +      osx_image: xcode6.4
> +      compiler: clang
> +    - env: CONFIG=""
> +      os: osx
> +      # default: OS X 10.11.6
> +      osx_image: xcode7.3
> +      compiler: clang
> +    - env: CONFIG=""
> +      os: osx
> +      # newer stable available, OS X 10.12
> +      osx_image: xcode8.3
>        compiler: clang
>      # Plain Trusty System Build
>      - env: CONFIG="--disable-linux-user"


--
Alex Bennée
diff mbox

Patch

diff --git a/.travis.yml b/.travis.yml
index 7c93a10c5f..cd59570062 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -117,6 +117,18 @@  matrix:
       compiler: gcc
     - env: CONFIG=""
       os: osx
+      # older available: OS X 10.10
+      osx_image: xcode6.4
+      compiler: clang
+    - env: CONFIG=""
+      os: osx
+      # default: OS X 10.11.6
+      osx_image: xcode7.3
+      compiler: clang
+    - env: CONFIG=""
+      os: osx
+      # newer stable available, OS X 10.12
+      osx_image: xcode8.3
       compiler: clang
     # Plain Trusty System Build
     - env: CONFIG="--disable-linux-user"