From 03362613a2ceb52d5a98262f0d2f3f54db20e5eb Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Thu, 27 Aug 2015 13:42:43 -0700 Subject: [PATCH] appveyor: drop v0.11, iojs v1.5.1, test x64 --- appveyor.yml | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index b2cb358..2e28df9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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 @@ -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