# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
project_id: "e5a5q75l9yfhnfv2"

# build version format
version: "{build}"

# fix lineendings in Windows
init:
  - git config --global core.autocrlf input

# what combinations to test
environment:
  matrix:
    - nodejs_version: 0.11
    - nodejs_version: 0.10

# Get the latest stable version of Node 0.STABLE.latest
install:
  - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
  - cmd: SET PATH=C:\Program Files (x86)\MSBuild\12.0\bin\;%PATH%
  - cmd: SET PATH=c:\python27;%PATH%
  - cmd: npm install -g node-gyp
  - npm install --msvs_version=2013

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

build: off
