Commit 23499b7d authored by Davis King's avatar Davis King

updated for clean travis

parent 4a746575
......@@ -6,16 +6,16 @@ set -eux
if [ "$VARIANT" = "test" ]; then
mkdir build
cd build
../cmake/bin/cmake ../dlib/test -DCMAKE_BUILD_TYPE=Release
../cmake/bin/cmake --build . --target dtest -- -j 2
cmake ../dlib/test -DCMAKE_BUILD_TYPE=Release
cmake --build . --target dtest -- -j 2
./dtest --runall
fi
if [ "$VARIANT" = "examples" ]; then
mkdir build
cd build
../cmake/bin/cmake ../examples -DCMAKE_BUILD_TYPE=Release
../cmake/bin/cmake --build . -- -j 1
cmake ../examples -DCMAKE_BUILD_TYPE=Release
cmake --build . -- -j 1
fi
if [ "$VARIANT" = "python-api" ]; then
......
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