mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 10:11:46 +00:00
33 lines
806 B
YAML
33 lines
806 B
YAML
image: Visual Studio 2019
|
|
|
|
platform:
|
|
- x64
|
|
|
|
cache:
|
|
- node_modules
|
|
- '%USERPROFILE%\.electron'
|
|
|
|
init:
|
|
- git config --global core.autocrlf input
|
|
|
|
install:
|
|
# Install node
|
|
- ps: Install-Product node 10 x64
|
|
# Install dependencies
|
|
- yarn --frozen-lockfile
|
|
|
|
# on_finish:
|
|
# # Enable RDP to the build worker (using APPVEYOR_RDP_PASSWORD env var)
|
|
# # https://www.appveyor.com/docs/how-to/rdp-to-build-worker/
|
|
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
|
|
|
|
# @FIXME: tests disabled because app fails to launch on AppVeyor/Windows
|
|
# os: unstable # https://github.com/electron-userland/spectron#on-appveyor
|
|
# test_script:
|
|
# - yarn test
|
|
|
|
build_script:
|
|
- yarn run release:win
|
|
|
|
test: off
|