From 5e577976a1e04c39091aae8ca4933bbb6dc74f3a Mon Sep 17 00:00:00 2001 From: Robin Deits Date: Tue, 22 Dec 2015 03:26:25 -0500 Subject: [PATCH] add trusty build to travis --- .travis.yml | 43 ++++++++++++++++++++++++++----------------- 1 file changed, 26 insertions(+), 17 deletions(-) diff --git a/.travis.yml b/.travis.yml index a81d89c6526c..5b1e8d3b92b4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,5 @@ -os: - - linux - - osx - language: cpp -sudo: required - notifications: email: false @@ -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 +