mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-19 21:07:18 +00:00

* Upgrade etcher-image-write to v5.0.1 The new version contains an important fix to prevent `EPERM` errors on Windows with certain drives. Fixes: https://github.com/resin-io/etcher/issues/334 Signed-off-by: Juan Cruz Viotti <jviottidc@gmail.com> * Upgrade NPM to fix newer package versions not available in Appveyor See: https://github.com/npm/npm/issues/4984 Signed-off-by: Juan Cruz Viotti <jviottidc@gmail.com>
43 lines
884 B
YAML
43 lines
884 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: 1.1.1
|
|
npm_config_arch: x64
|
|
matrix:
|
|
- nodejs_version: 6.1.0
|
|
|
|
install:
|
|
- ps: Install-Product node $env:nodejs_version x64
|
|
- npm install -g npm
|
|
- 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
|