File tree Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Expand file tree Collapse file tree 1 file changed +10
-8
lines changed Original file line number Diff line number Diff 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)
1315install :
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.
3032build : off
You can’t perform that action at this time.
0 commit comments