version: '{build}' branches: { only: [ master ] } configuration: Release image: Visual Studio 2019 platform: x64 environment: matrix: - job_name: VS2019 CMAKE_ARGS: -A %Platform% - job_name: VS2019ARM CMAKE_ARGS: -A ARM64 -DCMAKE_CROSSCOMPILING=1 - job_name: VS2017 (Static, No Threads) image: Visual Studio 2017 CMAKE_ARGS: -A %Platform% - job_name: VS2019 (Win32) platform: Win32 CMAKE_ARGS: -A %Platform% build_script: - mkdir build - cd build - cmake --version - cmake %CMAKE_ARGS% .. - cmake .. - cmake --build . --config %Configuration% --verbose for: - matrix: except: - job_name: VS2019ARM test_script: - ctest --output-on-failure -C %Configuration% --verbose %CTEST_ARGS% clone_folder: c:\projects\fast_double_parser matrix: fast_finish: true