patrick
/
plasp
Archived
1
0
Fork 0

Added Travis target for g++ 6.

This commit is contained in:
Patrick Lühne 2016-10-10 18:22:56 +02:00
parent 1f7ee57889
commit 5d8c143e60
1 changed files with 26 additions and 9 deletions

View File

@ -1,25 +1,42 @@
# Use container-based distribution # Use container-based distribution
sudo: false sudo: false
language: c++ language: c++
addons:
apt:
sources: &default_sources
- ubuntu-toolchain-r-test
- boost-latest
packages: &default_packages
- libboost-program-options1.55-dev
- libboost-iostreams1.55-dev
- libboost-system1.55-dev
- libboost-filesystem1.55-dev
matrix: matrix:
include: include:
- compiler: gcc - env: COMPILER_NAME=g++ _CXX=g++-5
os: linux
language: cpp
addons: addons:
apt: apt:
sources: sources:
- ubuntu-toolchain-r-test - *default_sources
- boost-latest
packages: packages:
- *default_packages
- g++-5 - g++-5
- libboost-program-options1.55-dev - env: COMPILER_NAME=g++ _CXX=g++-6
- libboost-iostreams1.55-dev os: linux
- libboost-system1.55-dev language: cpp
- libboost-filesystem1.55-dev addons:
env: COMPILER=g++-5 apt:
sources:
- *default_sources
packages:
- *default_packages
- g++-6
script: script:
- git submodule init - git submodule init
- git submodule update - git submodule update
- mkdir build - mkdir build
- cd build - cd build
- cmake .. -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTS=ON -DCMAKE_CXX_COMPILER=$COMPILER - cmake .. -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTS=ON -DCMAKE_CXX_COMPILER=$_CXX
- make -j3 && make -j3 run-tests - make -j3 && make -j3 run-tests