Catch/.travis.yml

21 lines
252 B
YAML
Raw Normal View History

language: cpp
compiler:
- clang
- gcc
env:
- BUILD_TYPE=Debug
- BUILD_TYPE=Release
install:
- cmake -Hprojects/CMake -BBuild -DCMAKE_BUILD_TYPE=$BUILD_TYPE
- cd Build
- make
- cd ..
script:
- cd Build
2013-08-05 06:53:36 -04:00
- ./SelfTest
- ctest -VV