Duckstation/appveyor.yml
Margen67 f2b1f40763 appveyor.yml improvements
Ignore files like GitHub Actions.
Make image: into one line.
Make submodule update into one line.
Remove whitespace.
Use AppVeyor's build system.
7z:
 Exclude files from the archive instead of deleting them.
 Make archive more consistent with GitHub Actions.
Use artifacts: instead of PushArtifact.
2020-12-26 00:37:36 -08:00

36 lines
588 B
YAML

version: 1.0.{build}
branches:
only:
- dev
skip_tags: true
skip_commits:
files:
- '.github/**'
- '**.md'
- 'scripts/*'
image: Visual Studio 2019
install:
- git submodule update --init --depth 1
platform: x64
configuration: ReleaseLTCG
build:
parallel: true
project: duckstation.sln
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
test: off
artifacts:
- path: duckstation-windows-x64-release.zip