]> granicus.if.org Git - curl/commitdiff
CI: Added AppVeyor-CI for curl
authorSergei Nikulov <sergey.nikulov@gmail.com>
Thu, 17 Sep 2015 13:34:47 +0000 (16:34 +0300)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 26 Sep 2015 21:57:36 +0000 (23:57 +0200)
Closes #439

appveyor.yml [new file with mode: 0644]

diff --git a/appveyor.yml b/appveyor.yml
new file mode 100644 (file)
index 0000000..42eb392
--- /dev/null
@@ -0,0 +1,19 @@
+version: 7.45.0.{build}
+
+environment:
+    matrix:
+      - PRJ_GEN: "Visual Studio 11 2012 Win64"
+        BDIR: msvc2012
+        PRJ_CFG: Release
+      - PRJ_GEN: "Visual Studio 12 2013 Win64"
+        BDIR: msvc2013
+        PRJ_CFG: Release
+      - PRJ_GEN: "Visual Studio 14 2015 Win64"
+        BDIR: msvc2015
+        PRJ_CFG: Release
+
+build_script:
+    - mkdir build.%BDIR%
+    - cd build.%BDIR%
+    - cmake .. -G"%PRJ_GEN%"
+    - cmake --build . --config %PRJ_CFG% --clean-first