forked from Nexus-Mods/Vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (32 loc) · 835 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
version: 1.0.{build}
clone_depth: 1
image:
- Visual Studio 2017
environment:
nodejs_version: 11
platform:
- x64
configuration:
- Release
install:
- ps: Install-Product node $env:nodejs_version x64
- ps: |
Write-Host "Installing newest Yarn!"
(New-Object Net.WebClient).DownloadFile("https://yarnpkg.com/latest.msi", "$env:temp\yarn.msi")
cmd /c start /wait msiexec.exe /i $env:temp\yarn.msi /quiet /qn /norestart
yarn --version
- set EDGE_USE_CORECLR= && yarn install
branches:
except:
- announcements
build_script:
- cmd: >-
yarn run ci
test_script:
- cmd: >-
yarn run test
artifacts:
- path: dist\Vortex Setup *.exe
name: Setup
on_failure:
- ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))