Merge pull request #803 from simdjson/jkeiser/windows-ci-parallel

Run Windows tests and builds in parallel
This commit is contained in:
John Keiser 2020-04-26 12:07:54 -07:00 committed by GitHub
commit 59d1212039
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -24,12 +24,13 @@ build_script:
- set - set
- mkdir build - mkdir build
- cd 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 -DSIMDJSON_BUILD_STATIC=%SIMDJSON_BUILD_STATIC% -DSIMDJSON_ENABLE_THREADS=%SIMDJSON_ENABLE_THREADS% -DCMAKE_BUILD_TYPE=%Configuration% -DCMAKE_GENERATOR_PLATFORM=%SIMDJSON_PLATFORM% ..
- cmake -LH .. - cmake -LH ..
- cmake --build . --config %Configuration% --verbose - cmake --build . --config %Configuration% --verbose --parallel
test_script: test_script:
- ctest --output-on-failure -C %Configuration% --verbose - ctest --output-on-failure -C %Configuration% --verbose --parallel
matrix: matrix:
fast_finish: true fast_finish: true