From 77b051bef046922379cd7fc84dec978dfe579098 Mon Sep 17 00:00:00 2001 From: Davis King Date: Sun, 14 May 2017 19:40:10 -0400 Subject: [PATCH] Don't use parallel builds since it makes appveyor run out of ram. Also simplified script a little. --- appveyor.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 21c14f7f4..8be00a8d2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,14 +7,9 @@ build_script: - mkdir %APPVEYOR_BUILD_FOLDER%\build_test - cd %APPVEYOR_BUILD_FOLDER%\build_test - cmake -G "Visual Studio 14 2015 Win64" ../dlib/test - - cmake --build . --config %CONFIGURATION% --target dtest -- /m /verbosity:minimal - # 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 + - cmake --build . --config %CONFIGURATION% test_script: # run test - cd %APPVEYOR_BUILD_FOLDER%\build_test\%CONFIGURATION% - - dtest --runall \ No newline at end of file + - dtest --runall