aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
blob: c5a768cb41066509ea3cd2ea28a361f4ce07b2a0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
version: '{build}'
skip_tags: true
os: Windows Server 2012 R2
environment:
  GYP_MSVS_VERSION: 2015
  matrix:
  - GENERATOR: Visual Studio 14 Win64
    DEPS_PATH: deps64
  - GENERATOR: Visual Studio 14
    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 ..