Skip to content

Commit 6dadb97

Browse files
committed
Add Appveyor for Windows CI
1 parent 2b090fe commit 6dadb97

File tree

1 file changed

+56
-0
lines changed

1 file changed

+56
-0
lines changed

appveyor.yml

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
-
2+
os: Visual Studio 2013
3+
4+
configuration: release
5+
6+
platform:
7+
- x64
8+
- x86
9+
10+
version: "{build}"
11+
12+
cache:
13+
- '%userprofile%\.node-gyp'
14+
- '%AppData%\npm-cache'
15+
16+
environment:
17+
matrix:
18+
- nodejs_version: 0.10
19+
GYP_MSVS_VERSION: 2013
20+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
21+
- nodejs_version: 0.12
22+
GYP_MSVS_VERSION: 2013
23+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
24+
- nodejs_version: 1
25+
GYP_MSVS_VERSION: 2013
26+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
27+
- nodejs_version: 2
28+
GYP_MSVS_VERSION: 2013
29+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
30+
- nodejs_version: 3
31+
GYP_MSVS_VERSION: 2013
32+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
33+
- nodejs_version: 4
34+
GYP_MSVS_VERSION: 2013
35+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
36+
- nodejs_version: 5
37+
GYP_MSVS_VERSION: 2013
38+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
39+
- nodejs_version: 6
40+
GYP_MSVS_VERSION: 2015
41+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
42+
- nodejs_version: 7
43+
GYP_MSVS_VERSION: 2015
44+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
45+
- nodejs_version: 8
46+
GYP_MSVS_VERSION: 2015
47+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
48+
- nodejs_version: 9
49+
GYP_MSVS_VERSION: 2015
50+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
51+
52+
install:
53+
- ps: Install-Product node $env:nodejs_version $env:platform
54+
- node --version
55+
- npm --version
56+
- npm install

0 commit comments

Comments
 (0)