1configuration:
2  - Debug
3  - Release
4
5environment:
6  CTEST_OUTPUT_ON_FAILURE: 1
7  matrix:
8  - BUILD: msvc
9  - BUILD: msvc
10    PLATFORM: x64
11  - BUILD: mingw
12
13before_build:
14  # Workaround for CMake not wanting sh.exe on PATH for MinGW.
15  - set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
16
17build_script:
18  - python support/appveyor-build.py
19
20on_failure:
21  - appveyor PushArtifact Testing/Temporary/LastTest.log
22  - appveyor AddTest test
23
24# Uncomment this to debug AppVeyor failures.
25#on_finish:
26#  - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
27