1
0
Fork 0

AppVeyor: MSVC builds for third-party/

Dieser Commit ist enthalten in:
Rui Abreu Ferreira 2015-04-22 09:01:33 +01:00 committet von Florian Walch
Ursprung f65614fb1c
Commit 43c767ba78
1 geänderte Dateien mit 23 neuen und 0 gelöschten Zeilen

23
appveyor.yml Normale Datei
Datei anzeigen

@ -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 ..