travis: try out build matrix

This commit is contained in:
Alam Ed Arias 2016-05-27 18:36:16 -04:00
parent d1aab2e418
commit dac8da80b9
1 changed files with 11 additions and 10 deletions

View File

@ -2,16 +2,16 @@ language: c
sudo: required
dist: trusty
env:
- CFLAGS=-Wall -W -Werror
os:
- linux
- osx
compiler:
- gcc
- clang
matrix:
include:
- os: linux
env: CC=gcc
- os: linux
env: CC=clang
- os: osx
env: CC=gcc
- os: osx
env: CC=clang
cache:
apt: true
@ -34,6 +34,7 @@ before_script:
- mkdir build
- cd build
- cmake ..
- set CFLAGS=-Wall -W -Werror
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update ; fi