Skip to content

Commit

Permalink
appveyor: drop v0.11, iojs v1.5.1, test x64
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Aug 27, 2015
1 parent 5984745 commit 0336261
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions appveyor.yml
Expand Up @@ -5,14 +5,18 @@ environment:
matrix:
- nodejs_version: "0.8"
- nodejs_version: "0.10"
- nodejs_version: "0.11"
- nodejs_version: "0.12"
- nodejs_version: "1.5.1"

platform:
- x86
- x64

# Install scripts. (runs after repo cloning)
install:
# Get the latest stable version of Node 0.STABLE.latest
- ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
- ps: Install-Product node $env:nodejs_version $env:platform
# Node 0.8 comes with a too obsolete npm
- set PATH=%APPVEYOR_BUILD_FOLDER%\node_modules\.bin;%APPDATA%\npm;%PATH%
- IF "%nodejs_version%" == "0.8" npm -g install npm@1.4.28
# Typical npm stuff.
- npm install

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

# Don't actually build.
build: off
Expand Down

0 comments on commit 0336261

Please sign in to comment.