summaryrefslogtreecommitdiffstats
path: root/src/fmt/support/appveyor.yml
blob: f53e4383998b94456a23f03c78ad422a23b56e5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
configuration:
  - Debug
  - Release

clone_depth: 1

image:
  - Visual Studio 2015
  - Visual Studio 2019
  - Visual Studio 2017

platform:
  - Win32
  - x64

environment:
  CTEST_OUTPUT_ON_FAILURE: 1
  MSVC_DEFAULT_OPTIONS: ON
  BUILD: msvc

matrix:
  exclude:
    - image: Visual Studio 2015
      platform: Win32
    - image: Visual Studio 2019
      platform: Win32

before_build:
 - mkdir build
 - cd build

build_script:
  - python ../support/appveyor-build.py

on_failure:
  - appveyor PushArtifact Testing/Temporary/LastTest.log
  - appveyor AddTest test

# Uncomment this to debug AppVeyor failures.
#on_finish:
#  - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))