Skip to content

Commit e45e200

Browse files
committed
Simplifiy appveyor config
1 parent 6dadb97 commit e45e200

File tree

1 file changed

+22
-50
lines changed

1 file changed

+22
-50
lines changed

appveyor.yml

Lines changed: 22 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,28 @@
1-
-
2-
os: Visual Studio 2013
1+
version: "{build}"
32

4-
configuration: release
3+
cache:
4+
- '%AppData%\npm-cache'
55

6-
platform:
7-
- x64
8-
- x86
6+
build: off
97

10-
version: "{build}"
8+
platform:
9+
- x64
10+
- x86
1111

12-
cache:
13-
- '%userprofile%\.node-gyp'
14-
- '%AppData%\npm-cache'
12+
environment:
13+
matrix:
14+
- nodejs_version: 0.10
15+
- nodejs_version: 0.12
16+
- nodejs_version: 4
17+
- nodejs_version: 6
18+
- nodejs_version: 8
19+
- nodejs_version: 9
1520

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
21+
install:
22+
- ps: Install-Product node $env:nodejs_version $env:platform
23+
- npm install
5124

52-
install:
53-
- ps: Install-Product node $env:nodejs_version $env:platform
54-
- node --version
55-
- npm --version
56-
- npm install
25+
test_script:
26+
- node --version
27+
- npm --version
28+
- npm test

0 commit comments

Comments
 (0)