forked from naturalatlas/node-gdal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
40 lines (36 loc) · 1.04 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# This variable requests the highest version of
# Visual Studio to be installed. Previous versions
# will also be available and work. So, choosing 2015 here makes
# available both `msvs_toolset: 12` (from Visual Studio 2013)
# and `msvs_toolset: 14` (from Visual Studio 2015)
# Note/TODO: it is not yet confirmed that earlier versions work with the the `Visual Studio 2017` os image.
os: Visual Studio 2015
platform:
- x86
- x64
environment:
matrix:
# Visual Studio 2013 builds
- nodejs_version: 4
msvs_toolset: 12
- nodejs_version: 6
msvs_toolset: 12
- nodejs_version: 8
msvs_toolset: 12
# Visual Studio 2015 builds
- nodejs_version: 4
msvs_toolset: 14
- nodejs_version: 6
msvs_toolset: 14
- nodejs_version: 8
msvs_toolset: 14
- nodejs_version: 9
msvs_toolset: 14
- nodejs_version: 10
msvs_toolset: 14
install:
- ps: Start-FileDownload 'https://github.com/mapbox/ci-scripts/raw/v1.1.0/node/ci-cpp.bat' -FileName ci.bat
- CALL ci.bat
build: OFF
test: OFF
deploy: OFF