diff --git a/appveyor.yml b/appveyor.yml index 13533a455..2d27817a5 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,31 +1,35 @@ version: 1.0.{build} branches: only: - - dev -skip_tags: true - -image: -- Visual Studio 2019 + - dev -install: -- cmd: >- - git submodule update --init --depth 1 - -build_script: -- cmd: >- - call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 +skip_tags: true - 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 + +artifacts: + - path: duckstation-windows-x64-release.zip