2019-02-23 05:15:52 +08:00
|
|
|
version: '{build}'
|
|
|
|
branches:
|
|
|
|
only:
|
|
|
|
- master
|
|
|
|
image:
|
|
|
|
- Visual Studio 2017
|
|
|
|
clone_folder: c:\projects\simdjson
|
|
|
|
|
|
|
|
platform:
|
|
|
|
- x64
|
|
|
|
|
2019-07-05 05:19:05 +08:00
|
|
|
environment:
|
|
|
|
matrix:
|
2019-08-04 21:56:34 +08:00
|
|
|
- SIMDJSON_BUILD_STATIC: "OFF"
|
|
|
|
- SIMDJSON_BUILD_STATIC: "ON"
|
|
|
|
|
2019-02-23 05:15:52 +08:00
|
|
|
build_script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
2019-08-05 03:41:00 +08:00
|
|
|
- ps: cmake -DSIMDJSON_BUILD_STATIC="$env:SIMDJSON_BUILD_STATIC" -DCMAKE_BUILD_TYPE=Release -DCMAKE_GENERATOR_PLATFORM=x64 ..
|
2019-02-23 05:15:52 +08:00
|
|
|
- cmake --build .
|
2019-08-10 05:26:05 +08:00
|
|
|
- ctest --verbose --output-on-failure
|