FasTC/.travis.yml

24 lines
406 B
YAML
Raw Normal View History

2014-03-11 21:27:52 +00:00
language: cpp
git:
submodules: false
2014-03-11 21:27:52 +00:00
compiler:
- gcc
- clang
addons:
apt:
sources:
- george-edison55-precise-backports # cmake 3.2.3 / doxygen 1.8.3
packages:
- cmake
- cmake-data
2014-03-11 21:27:52 +00:00
before_script:
- mkdir build
- cd build
- cmake .. -DCMAKE_BUILD_TYPE=Release
script: make && make test
after_failure: if [ -d Testing ]; then cat Testing/Temporary/LastTest.log; fi