summaryrefslogtreecommitdiffstats
path: root/src/fmt/support/appveyor.yml
diff options
context:
space:
mode:
Diffstat (limited to 'src/fmt/support/appveyor.yml')
-rw-r--r--src/fmt/support/appveyor.yml41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/fmt/support/appveyor.yml b/src/fmt/support/appveyor.yml
new file mode 100644
index 000000000..f53e43839
--- /dev/null
+++ b/src/fmt/support/appveyor.yml
@@ -0,0 +1,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'))