patrick
/
plasp
Archived
1
0
Fork 0
This repository has been archived on 2023-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
plasp/.travis.yml

22 lines
489 B
YAML
Raw Normal View History

2016-05-20 22:19:40 +02:00
# Use container-based distribution
sudo: false
language: c++
matrix:
include:
- compiler: gcc
addons:
apt:
sources:
- ubuntu-toolchain-r-test
- boost-latest
packages:
- g++-5
- libboost1.55-all-dev
- libgtest-dev
env: COMPILER=g++-5
script:
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTS=ON -DCMAKE_CXX_COMPILER=$COMPILER
- make && make run-tests