wavelib/.travis.yml

33 lines
504 B
YAML
Raw Normal View History

2016-03-09 20:32:39 +08:00
language: cpp
os:
2016-03-09 22:41:01 +08:00
- linux
2016-03-09 20:32:39 +08:00
- osx
compiler:
- gcc
- clang
env:
- BUILD_CONFIG=Release
- BUILD_CONFIG=Debug
matrix:
allow_failures:
- compiler: clang
before_install:
2016-03-09 23:41:01 +08:00
- sudo apt-get update -qq
- sudo apt-get install -qq libboost-system-dev libboost-thread-dev libboost-test-dev libtinyxml-dev
2016-03-09 20:32:39 +08:00
install:
before_script:
- mkdir build.ci
- cd build.ci
- cmake .. -DBUILD_UT=ON -DCMAKE_BUILD_TYPE=$BUILD_CONFIG -DUSE_STATIC_BOOST=YES
2016-03-09 20:32:39 +08:00
script:
- cmake --build .
- ctest -VV