From 027e41632f889095d9071843596697baba3867e9 Mon Sep 17 00:00:00 2001 From: Cameron Cawley Date: Fri, 21 Jun 2019 16:05:39 +0100 Subject: TRAVIS: Don't build with gcc on Mac OS X (#1692) * TRAVIS: Don't build with gcc on Mac OS X gcc on Mac OS X is just a frontend for LLVM. * TRAVIS: Fix building with clang on Linux --- .travis.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 1a47909f06..67b85686b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -51,13 +51,14 @@ branches: only: - master -compiler: - - gcc - - clang - -os: - - linux - - osx +matrix: + include: + - os: linux + compiler: gcc + - os: linux + compiler: clang + - os: osx + compiler: clang dist: trusty -- cgit v1.2.3