1version: '{build}' 2 3environment: 4 matrix: 5 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 6 configuration: Debug 7 platform: x86 8 CXX_FLAGS: "/W4 /WX" 9 CMAKE_OPTIONS: "" 10 GENERATOR: Visual Studio 14 2015 11 12 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 13 configuration: Release 14 platform: x86 15 CXX_FLAGS: "/W4 /WX" 16 CMAKE_OPTIONS: "" 17 GENERATOR: Visual Studio 14 2015 18 19 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 20 configuration: Release 21 platform: x86 22 name: with_win_header 23 CXX_FLAGS: "/W4 /WX" 24 CMAKE_OPTIONS: "" 25 GENERATOR: Visual Studio 14 2015 26 27 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 28 configuration: Release 29 platform: x86 30 CXX_FLAGS: "/permissive- /std:c++latest /utf-8 /W4 /WX" 31 CMAKE_OPTIONS: "" 32 GENERATOR: Visual Studio 15 2017 33 34 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 35 configuration: Release 36 platform: x86 37 CXX_FLAGS: "/W4 /WX" 38 CMAKE_OPTIONS: "-DJSON_ImplicitConversions=OFF" 39 GENERATOR: Visual Studio 16 2019 40 41 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 42 configuration: Release 43 platform: x64 44 CXX_FLAGS: "/W4 /WX" 45 CMAKE_OPTIONS: "" 46 GENERATOR: Visual Studio 14 2015 47 48 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 49 configuration: Release 50 platform: x64 51 CXX_FLAGS: "/permissive- /std:c++latest /Zc:__cplusplus /utf-8 /W4 /WX" 52 CMAKE_OPTIONS: "" 53 GENERATOR: Visual Studio 15 2017 54 55init: 56 - cmake --version 57 - msbuild /version 58 59install: 60 - if "%platform%"=="x86" set GENERATOR_PLATFORM=Win32 61 62before_build: 63 # for with_win_header build, inject the inclusion of Windows.h to the single-header library 64 - ps: if ($env:name -Eq "with_win_header") { $header_path = "single_include\nlohmann\json.hpp" } 65 - ps: if ($env:name -Eq "with_win_header") { "#include <Windows.h>`n" + (Get-Content $header_path | Out-String) | Set-Content $header_path } 66 - cmake . -G "%GENERATOR%" -A "%GENERATOR_PLATFORM%" -DCMAKE_CXX_FLAGS="%CXX_FLAGS%" -DCMAKE_IGNORE_PATH="C:/Program Files/Git/usr/bin" -DJSON_BuildTests=On "%CMAKE_OPTIONS%" 67 68build_script: 69 - cmake --build . --config "%configuration%" 70 71test_script: 72 - if "%configuration%"=="Release" ctest -C "%configuration%" -V -j 73 # On Debug builds, skip test-unicode_all 74 # as it is extremely slow to run and cause 75 # occasional timeouts on AppVeyor. 76 # More info: https://github.com/nlohmann/json/pull/1570 77 - if "%configuration%"=="Debug" ctest --exclude-regex "test-unicode" -C "%configuration%" -V -j 78 79# only build PRs and commits to develop branch 80# (see https://help.appveyor.com/discussions/questions/55079-two-builds-per-commit-to-pull-request) 81branches: 82 only: 83 - develop 84