Commit 77b051be authored by Davis King's avatar Davis King

Don't use parallel builds since it makes appveyor run out of ram. Also

simplified script a little.
parent a1c3b067
...@@ -7,14 +7,9 @@ build_script: ...@@ -7,14 +7,9 @@ build_script:
- mkdir %APPVEYOR_BUILD_FOLDER%\build_test - mkdir %APPVEYOR_BUILD_FOLDER%\build_test
- cd %APPVEYOR_BUILD_FOLDER%\build_test - cd %APPVEYOR_BUILD_FOLDER%\build_test
- cmake -G "Visual Studio 14 2015 Win64" ../dlib/test - cmake -G "Visual Studio 14 2015 Win64" ../dlib/test
- cmake --build . --config %CONFIGURATION% --target dtest -- /m /verbosity:minimal - cmake --build . --config %CONFIGURATION%
# build examples
- mkdir %APPVEYOR_BUILD_FOLDER%\build_examples
- cd %APPVEYOR_BUILD_FOLDER%\build_examples
- cmake -G "Visual Studio 14 2015 Win64" ../examples
- cmake --build . --config %CONFIGURATION% -- /m /verbosity:minimal
test_script: test_script:
# run test # run test
- cd %APPVEYOR_BUILD_FOLDER%\build_test\%CONFIGURATION% - cd %APPVEYOR_BUILD_FOLDER%\build_test\%CONFIGURATION%
- dtest --runall - dtest --runall
\ No newline at end of file
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