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:
authorXhmikosR <xhmikosr@gmail.com>2017-07-22 21:01:43 +0300
committerXhmikosR <xhmikosr@gmail.com>2017-08-28 08:55:56 +0300
commit38ccff22c3d3e42a45d34fba73ed8e3f388aea1a (patch)
tree4e70a969a972fdfd84b074cdd064da4d5a21f56a
parent4fe7e374b5298c6c3f25d6395f3e5e29a1c65467 (diff)
Update .appveyor.ymlappveyor
-rw-r--r--.appveyor.yml26
-rw-r--r--appveyor.yml25
2 files changed, 26 insertions, 25 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
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 9f291da92..000000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-version: 1.7.10-{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_610_x86-x64.7z -OutFile msys.7z
- 7z x msys.7z -oC: -y > $null
- }
-
- git submodule -q update --init --recursive
-
-cache: # 15.11.2015 14:32
- - C:\MSYS -> appveyor.yml
-
-build_script:
- - cmd: build.bat silent nocolors
-
-test: off
-
-deploy: off