duckstation/appveyor.yml

36 lines
588 B
YAML
Raw Normal View History

2020-02-15 12:38:53 +00:00
version: 1.0.{build}
2020-05-23 09:18:08 +00:00
branches:
only:
- dev
2020-02-15 12:38:53 +00:00
skip_tags: true
2020-02-15 12:38:53 +00:00
skip_commits:
files:
- '.github/**'
- '**.md'
- 'scripts/*'
2020-02-15 12:38:53 +00:00
image: Visual Studio 2019
2020-02-15 12:38:53 +00:00
install:
- git submodule update --init --depth 1
2020-04-02 15:32:06 +00:00
platform: x64
configuration: ReleaseLTCG
2020-02-15 12:38:53 +00:00
build:
parallel: true
project: duckstation.sln
2020-02-15 12:38:53 +00:00
after_build:
- |-
7z a duckstation-windows-x64-release.zip .\bin\x64\* -r "-xr!*.pdb" "-xr!common-tests*"
7z rn duckstation-windows-x64-release.zip updater-x64-ReleaseLTCG.exe updater.exe
2020-02-15 12:38:53 +00:00
test: off
artifacts:
- path: duckstation-windows-x64-release.zip