Skip to content

Commit

Permalink
add trusty build to travis
Browse files Browse the repository at this point in the history
  • Loading branch information
rdeits committed Dec 22, 2015
1 parent 6018b87 commit 5e57797
Showing 1 changed file with 26 additions and 17 deletions.
43 changes: 26 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
os:
- linux
- osx

language: cpp

sudo: required

notifications:
email: false

Expand All @@ -26,18 +20,33 @@ script:

# The compiler and env:matrix options create an matrix of build configurations (gcc + Release, gcc + Debug, clang + Release, clang + Debug)

compiler:
- gcc
- clang

python:
- '2.7'

env:
matrix:
- BUILD_TYPE=Release
# - BUILD_TYPE=Debug

matrix:
# allow_failures:
# - compiler: gcc
include:
- sudo: required
os: linux
dist: precise
compiler: clang
env: BUILD_TYPE=Release
- sudo: required
os: linux
dist: precise
compiler: gcc
env: BUILD_TYPE=Release
- sudo: required
os: linux
dist: precise
compiler: clang
env: BUILD_TYPE=Debug
- sudo: required
os: linux
dist: trusty
compiler: gcc
env: BUILD_TYPE=Release
- sudo: required
os: osx
compiler: clang
env: BUILD_TYPE=Release

0 comments on commit 5e57797

Please sign in to comment.