tabby/appveyor.yml
Eugene Pankov ccb5d90634 ci caching
2019-06-07 20:00:32 +02:00

34 lines
549 B
YAML

os: Visual Studio 2017
platform:
- x64
environment:
nodejs_version: "10"
cache:
- "%USERPROFILE%\\.electron"
- "%LOCALAPPDATA%\\Yarn"
version: "{build}"
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- yarn
- node scripts/build-native.js
build_script:
- yarn run build:typings
- yarn run build
- node scripts/prepackage-plugins.js
- node scripts/build-windows.js
artifacts:
- path: 'dist\*.exe'
cache:
- node_modules
- *\node_modules
- '%LOCALAPPDATA%/Yarn'
- '%USERPROFILE%\.electron'