You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
235 B
19 lines
235 B
10 years ago
|
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
|
||
|
- test_bin
|