mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-20 05:17:18 +00:00
42 lines
862 B
YAML
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
|