Skip to content

Commit 0336261

Browse files
committed
appveyor: drop v0.11, iojs v1.5.1, test x64
1 parent 5984745 commit 0336261

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

appveyor.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,18 @@ environment:
55
matrix:
66
- nodejs_version: "0.8"
77
- nodejs_version: "0.10"
8-
- nodejs_version: "0.11"
98
- nodejs_version: "0.12"
10-
- nodejs_version: "1.5.1"
9+
10+
platform:
11+
- x86
12+
- x64
1113

1214
# Install scripts. (runs after repo cloning)
1315
install:
14-
# Get the latest stable version of Node 0.STABLE.latest
15-
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
16+
- ps: Install-Product node $env:nodejs_version $env:platform
17+
# Node 0.8 comes with a too obsolete npm
18+
- set PATH=%APPVEYOR_BUILD_FOLDER%\node_modules\.bin;%APPDATA%\npm;%PATH%
19+
- IF "%nodejs_version%" == "0.8" npm -g install [email protected]
1620
# Typical npm stuff.
1721
- npm install
1822

@@ -21,10 +25,8 @@ test_script:
2125
# Output useful info for debugging.
2226
- node --version
2327
- npm --version
24-
# We test multiple Windows shells because of Node.js stdout buffering issues:
25-
# https://github.com/joyent/node/issues/3584
26-
- ps: "npm test # PowerShell" # Pass comment to PS for easier debugging
27-
- cmd: npm test
28+
# run tests
29+
- npm test
2830

2931
# Don't actually build.
3032
build: off

0 commit comments

Comments
 (0)