diff options
author | Rui Abreu Ferreira <raf-ep@gmx.com> | 2015-04-22 09:01:33 +0100 |
---|---|---|
committer | Florian Walch <florian@fwalch.com> | 2015-05-15 17:55:02 +0300 |
commit | 43c767ba78deebbf5c67ddaa57f0d36f61e11365 (patch) | |
tree | 714ec1183410479aa97ba32be61487de7745f4dc | |
parent | f65614fb1cb9fc668779819f05d884f70ffe2aeb (diff) | |
download | rneovim-43c767ba78deebbf5c67ddaa57f0d36f61e11365.tar.gz rneovim-43c767ba78deebbf5c67ddaa57f0d36f61e11365.tar.bz2 rneovim-43c767ba78deebbf5c67ddaa57f0d36f61e11365.zip |
AppVeyor: MSVC builds for third-party/
-rw-r--r-- | appveyor.yml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000000..d37d0b83de --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,23 @@ +version: '{build}'
+skip_tags: true
+os: Windows Server 2012 R2
+environment:
+ GYP_MSVS_VERSION: 2013
+ matrix:
+ - GENERATOR: Visual Studio 12 Win64
+ DEPS_PATH: deps64
+ - GENERATOR: Visual Studio 12
+ DEPS_PATH: deps32
+matrix:
+ # Allow builds to fail
+ allow_failures:
+ - os: Windows Server 2012 R2
+install: []
+build_script:
+# See http://help.appveyor.com/discussions/problems/539-cloning-gyp-fails
+- git config --global url."http://".insteadOf https://
+- mkdir %DEPS_PATH%
+- cd %DEPS_PATH%
+- cmake -G "%GENERATOR%" ..\third-party\
+- cmake --build .
+- cd ..
|