mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-10 18:21:47 +00:00
29 lines
559 B
YAML
29 lines
559 B
YAML
image: Visual Studio 2017
|
|
|
|
platform:
|
|
- x64
|
|
|
|
cache:
|
|
- node_modules
|
|
- '%USERPROFILE%\.electron'
|
|
|
|
init:
|
|
- git config --global core.autocrlf input
|
|
|
|
install:
|
|
# Install node
|
|
- ps: Install-Product node 10 x64
|
|
# Install Rust and Cargo
|
|
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
- rustup-init -yv --default-toolchain stable --default-host x86_64-pc-windows-msvc
|
|
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
|
|
- rustc -vV
|
|
- cargo -vV
|
|
# Install dependencies
|
|
- yarn
|
|
|
|
build_script:
|
|
- yarn run release:win
|
|
|
|
test: off
|