environment:
  matrix:
  - nodejs_version: "0.10"
  - nodejs_version: "0.12"
  - nodejs_version: "1.0"

matrix:
  fast_finish: true
  allow_failures:
    - platform: x86
    - platform: x64

platform:
  - x86
  - x64

install:
  - ps: Install-Product node $env:nodejs_version $env:platform
  - npm install -g npm@1.4.x
  - npm install

test_script:
  - node --version
  - npm --version
  - npm test

build: off
