Travis and AppVeyor CIs

This commit is contained in:
2018-12-09 01:00:42 +07:00
parent 3ef27c68e9
commit fda41ab6b1
9 changed files with 146 additions and 0 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 ../..