1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-03-21 04:51:13 -04:00
Catch2/.travis.yml

20 lines
236 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 07:29:42 -04:00
- ctest -V