Commit e1215e5c authored by Davis King's avatar Davis King

fix travis build and test script

parent 2a2bc9ce
...@@ -3,14 +3,17 @@ ...@@ -3,14 +3,17 @@
set -eux set -eux
# build dlib and tests # build dlib and tests
mkdir build
cd build
if [ "$VARIANT" = "test" ]; then if [ "$VARIANT" = "test" ]; then
mkdir build
cd build
../cmake/bin/cmake ../dlib/test -DCMAKE_BUILD_TYPE=Release ../cmake/bin/cmake ../dlib/test -DCMAKE_BUILD_TYPE=Release
../cmake/bin/cmake --build . --target dtest -- -j 2 ../cmake/bin/cmake --build . --target dtest -- -j 2
./dtest --runall ./dtest --runall
fi fi
if [ "$VARIANT" = "examples" ]; then if [ "$VARIANT" = "examples" ]; then
mkdir build
cd build
../cmake/bin/cmake ../examples -DCMAKE_BUILD_TYPE=Release ../cmake/bin/cmake ../examples -DCMAKE_BUILD_TYPE=Release
../cmake/bin/cmake --build . -- -j 1 ../cmake/bin/cmake --build . -- -j 1
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment