From ac9fa536c8051774c0fec3b57189d89adcc29629 Mon Sep 17 00:00:00 2001 From: Stefan Seefeld Date: Sun, 8 Apr 2018 21:34:48 -0400 Subject: [PATCH] Add OSX to CI test matrix. --- .travis.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 04390746..8eba87ca 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,17 +17,19 @@ env: matrix: include: - - compiler: gcc + - os: linux env: CXX=g++ PYTHON=python CXXFLAGS=-std=c++98 - - compiler: gcc + - os: linux env: CXX=g++ PYTHON=python CXXFLAGS=-std=c++11 - - compiler: gcc + - os: linux env: CXX=g++ PYTHON=python3 CXXFLAGS=-std=c++98 - - compiler: gcc + - os: linux env: CXX=g++ PYTHON=python3 CXXFLAGS=-std=c++11 - - compiler: clang + - os: linux env: CXX=clang++ PYTHON=python3 CXXFLAGS=-std=c++98 - - compiler: clang + - os: linux + env: CXX=clang++ PYTHON=python3 CXXFLAGS=-std=c++11 + - os: osx env: CXX=clang++ PYTHON=python3 CXXFLAGS=-std=c++11 - env: PYTHON=python DOC=1