added GCC 6 and Clang 3.8 to Travis
This commit is contained in:
parent
9af8f7d094
commit
e35805cf3a
1 changed files with 16 additions and 8 deletions
24
.travis.yml
24
.travis.yml
|
@ -30,6 +30,14 @@ matrix:
|
|||
packages: ['g++-5', 'valgrind']
|
||||
env: COMPILER=g++-5
|
||||
|
||||
- os: linux
|
||||
compiler: gcc
|
||||
addons:
|
||||
apt:
|
||||
sources: ['ubuntu-toolchain-r-test']
|
||||
packages: ['g++-6', 'valgrind']
|
||||
env: COMPILER=g++-6
|
||||
|
||||
- os: linux
|
||||
compiler: clang
|
||||
addons:
|
||||
|
@ -46,6 +54,14 @@ matrix:
|
|||
packages: ['clang-3.7', 'valgrind']
|
||||
env: COMPILER=clang++-3.7
|
||||
|
||||
- os: linux
|
||||
compiler: clang
|
||||
addons:
|
||||
apt:
|
||||
sources: ['ubuntu-toolchain-r-test', 'llvm-toolchain-precise-3.8']
|
||||
packages: ['clang-3.8', 'valgrind']
|
||||
env: COMPILER=clang++-3.8
|
||||
|
||||
# - os: osx
|
||||
# compiler: clang
|
||||
# env: COMPILER=clang
|
||||
|
@ -57,11 +73,3 @@ script:
|
|||
- make CXX=$COMPILER CXXFLAGS="-lstdc++"
|
||||
- ./json_unit "*"
|
||||
- valgrind --error-exitcode=1 --leak-check=full ./json_unit
|
||||
|
||||
notifications:
|
||||
webhooks:
|
||||
urls:
|
||||
- https://webhooks.gitter.im/e/f1196addb0e97a5ff396
|
||||
on_success: change
|
||||
on_failure: always
|
||||
on_start: never
|
||||
|
|
Loading…
Reference in a new issue