FasTC/.travis.yml
2014-03-12 03:43:20 -04:00

16 lines
No EOL
258 B
YAML

language: cpp
git:
submodules: false
compiler:
- gcc
- clang
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