etcher/appveyor.yml
Juan Cruz Viotti c8edafdad8 Upgrade CI servers NodeJS version (#434)
Signed-off-by: Juan Cruz Viotti <jviottidc@gmail.com>
2016-05-24 14:21:23 -04:00

42 lines
862 B
YAML

# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
init:
- git config --global core.autocrlf input
cache:
- C:\Users\appveyor\.node-gyp
- '%AppData%\npm-cache'
# what combinations to test
environment:
global:
ELECTRON_NO_ATTACH_CONSOLE: true
npm_config_disturl: https://atom.io/download/atom-shell
npm_config_runtime: electron
npm_config_target: 0.37.6
npm_config_arch: x64
matrix:
- nodejs_version: 6.1.0
install:
- ps: Install-Product node $env:nodejs_version x64
- npm install --build-from-source
- npm install -g bower
- bower install
build: off
test_script:
- node --version
- npm --version
- cmd: npm test
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/3d5ed28fa9ae4c25f46f
on_build_success: false
on_build_failure: true
on_build_status_changed: true