mirror of
https://github.com/Eugeny/tabby
synced 2024-11-15 01:17:14 +00:00
33 lines
528 B
YAML
33 lines
528 B
YAML
os: Visual Studio 2017
|
|
|
|
platform:
|
|
- x64
|
|
|
|
environment:
|
|
nodejs_version: "8"
|
|
|
|
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:
|
|
- npm run build --prefix app
|
|
- node scripts/build-plugins.js
|
|
- node scripts/prepackage-plugins.js
|
|
- node scripts/build-windows.js
|
|
|
|
artifacts:
|
|
- path: 'dist\*.exe'
|