mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-04 05:09:53 +01:00
20 lines
236 B
YAML
20 lines
236 B
YAML
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
|
|
- ctest -V
|