tabby/appveyor.yml

33 lines
481 B
YAML
Raw Normal View History

2017-06-24 20:21:57 +08:00
os: Visual Studio 2017
2017-06-24 19:06:52 +08:00
platform:
- x64
environment:
2017-06-24 20:41:30 +08:00
nodejs_version: "8"
2017-06-24 19:06:52 +08:00
cache:
- '%USERPROFILE%\.electron'
branches:
only:
- master
skip_tags: true
version: "{build}"
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- npm install
- node scripts/install-deps.js
- node scripts/build-native.js
build_script:
2017-06-24 21:39:18 +08:00
- npm run build
2017-06-24 19:06:52 +08:00
- node scripts/prepackage-plugins.js
- node scripts/build-windows.js
artifacts:
- path: 'dist\*.exe'