Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.appveyor.yml')
-rw-r--r--.appveyor.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
new file mode 100644
index 000000000..d6b757f48
--- /dev/null
+++ b/.appveyor.yml
@@ -0,0 +1,26 @@
+image: Visual Studio 2017
+
+version: 1.7.13-{build}
+
+environment:
+ MSYS: C:\MSYS
+ MINGW32: C:\MSYS\mingw
+ MINGW64: C:\MSYS\mingw
+
+install:
+ - ps: >-
+ if (!(Test-Path "$env:MSYS")) {
+ Invoke-WebRequest http://xhmikosr.1f0.de/tools/msys/MSYS_MinGW-w64_GCC_710_x86-x64.7z -OutFile msys.7z
+ 7z x msys.7z -oC: -y > $null
+ }
+ - git submodule -q update --init --recursive
+
+cache: # 03.06.2017 13:44
+ - C:\MSYS -> appveyor.yml
+
+build_script:
+ - build.bat silent nocolors
+
+test: off
+
+deploy: off