From 670e923b3f20fcbabe574d3cc997e3e81aece40f Mon Sep 17 00:00:00 2001 From: Snaipe Date: Sun, 27 Sep 2015 14:06:23 +0200 Subject: [PATCH] Reduced number of cmake parallel jobs on appveyor to 2 --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 318deb8..9c77ac6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,7 +15,7 @@ environment: matrix: - COMPILER: mingw GENERATOR: "MSYS Makefiles" - BUILD_OPT: -- -j4 + BUILD_OPT: -- -j2 - COMPILER: msvc GENERATOR: "Visual Studio 14 2015" CFLAGS: /MP @@ -60,7 +60,7 @@ before_deploy: test_script: - cmake --build . --target criterion_tests %BUILD_OPT% - - ps: try { ctest -j4 } catch { type Testing/Temporary/LastTest.log } + - ps: try { ctest -j2 } catch { type Testing/Temporary/LastTest.log } #after_test: # - 'make coveralls'