CI refactoring

- Travis CI instead CircleCI
- Build scripts
- Move test sources to root folder
- Update Catch
This commit is contained in:
2018-12-08 09:36:09 +07:00
parent 58a3dbadc3
commit 66836a2f7b
17 changed files with 5663 additions and 3229 deletions

9
scripts/build_debug.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
set -e
BUILD_DIR=`dirname "$BASH_SOURCE"`/../build
mkdir -p $BUILD_DIR/debug
cd $BUILD_DIR/debug
cmake -DCMAKE_BUILD_TYPE=Debug ../..
cmake --build . -- -j8
ctest --verbose
cd ../..