1configuration:
2  - Debug
3  - Release
4
5clone_depth: 1
6
7image:
8  - Visual Studio 2015
9  - Visual Studio 2019
10  - Visual Studio 2017
11
12platform:
13  - Win32
14  - x64
15
16environment:
17  CTEST_OUTPUT_ON_FAILURE: 1
18  MSVC_DEFAULT_OPTIONS: ON
19  BUILD: msvc
20
21matrix:
22  exclude:
23    - image: Visual Studio 2015
24      platform: Win32
25    - image: Visual Studio 2019
26      platform: Win32
27
28before_build:
29 - mkdir build
30 - cd build
31
32build_script:
33  - python ../support/appveyor-build.py
34
35on_failure:
36  - appveyor PushArtifact Testing/Temporary/LastTest.log
37  - appveyor AddTest test
38
39# Uncomment this to debug AppVeyor failures.
40#on_finish:
41#  - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
42