From d61cca6720b3aa327fc7eb30091e0994b6f82e4c Mon Sep 17 00:00:00 2001 From: John Keiser Date: Sat, 25 Apr 2020 14:48:57 -0700 Subject: [PATCH] Run Windows tests and builds in parallel --- .appveyor.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 27efaeab..e21744a9 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -24,12 +24,13 @@ build_script: - set - mkdir build - cd build + - cmake --version - cmake -DSIMDJSON_BUILD_STATIC=%SIMDJSON_BUILD_STATIC% -DSIMDJSON_ENABLE_THREADS=%SIMDJSON_ENABLE_THREADS% -DCMAKE_BUILD_TYPE=%Configuration% -DCMAKE_GENERATOR_PLATFORM=%SIMDJSON_PLATFORM% .. - cmake -LH .. - - cmake --build . --config %Configuration% --verbose + - cmake --build . --config %Configuration% --verbose --parallel test_script: - - ctest --output-on-failure -C %Configuration% --verbose + - ctest --output-on-failure -C %Configuration% --verbose --parallel matrix: fast_finish: true