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.
This commit is contained in:
Margen67 2020-12-24 11:29:45 -08:00
parent 56fc694076
commit f2b1f40763

View file

@ -2,30 +2,34 @@ version: 1.0.{build}
branches: branches:
only: only:
- dev - dev
skip_tags: true
image:
- Visual Studio 2019
install:
- cmd: >-
git submodule update --init --depth 1
build_script: skip_tags: true
- cmd: >-
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
msbuild duckstation.sln -t:Build -p:Platform=x64;Configuration=ReleaseLTCG skip_commits:
files:
- '.github/**'
- '**.md'
- 'scripts/*'
rm -f bin/x64/*.pdb bin/x64/*.exp bin/x64/*.lib bin/x64/*.iobj bin/x64/*.ipdb image: Visual Studio 2019
rm -f bin/x64/common-tests* install:
- git submodule update --init --depth 1
cp -a data/* bin/x64 platform: x64
"C:\Program Files\7-Zip\7z.exe" a -r duckstation-win64-release.7z ./bin/x64/* configuration: ReleaseLTCG
appveyor PushArtifact duckstation-win64-release.7z 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 test: off
artifacts:
- path: duckstation-windows-x64-release.zip