hyper/appveyor.yml
Benjamin Staneck 1a61359996 Update node to v8 on appveyor and add fast_finish (#2059)
By default AppVeyor runs all build jobs. If at least one job has failed the entire build is marked as failed.
2017-08-08 22:37:48 -04:00

33 lines
614 B
YAML

# https://github.com/sindresorhus/appveyor-node/blob/master/appveyor.yml
environment:
matrix:
- platform: x64
GH_TOKEN:
secure: tEHrAaRFMrUzagNJsnU+6Esvaw/FdUXZKWz7a690VAy6zzEThB0lThHLFVKZrQrP
image: Visual Studio 2015
init:
- yarn config set msvs_version 2015 # we need this to build `pty.js`
install:
- ps: Install-Product node 8 x64
- set CI=true
- yarn
build: off
matrix:
fast_finish: true
shallow_clone: true
test_script:
- node --version
- yarn --version
- yarn run test
on_success:
- yarn run dist
- ps: ls .\dist\win\*.exe | % { Push-AppveyorArtifact $_.FullName }