From ce1d632f4eb50f56cff59712a1d522510057306e Mon Sep 17 00:00:00 2001 From: Rick Gibbed Date: Tue, 11 Feb 2020 04:34:37 -0600 Subject: [PATCH] [CI] Include SDL2.dll as part of artifacts. --- .appveyor.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 261b6a589..44134f8a4 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -40,6 +40,7 @@ after_build: - cmd: | 7z a xenia-%appveyor_repo_branch%.zip LICENSE %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\xenia.exe %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\xenia.pdb 7z a xenia-vfs-dump-%appveyor_repo_branch%.zip LICENSE %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\xenia-vfs-dump.exe %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\xenia-vfs-dump.pdb + 7z a SDL2.zip %APPVEYOR_BUILD_FOLDER%\build\bin\%PLATFORM%\%CONFIGURATION%\SDL2.dll before_test: - cmd: xb gentests @@ -51,12 +52,13 @@ artifacts: - path: xenia-cpu-ppc-test.log - path: xenia-$(appveyor_repo_branch).zip - path: xenia-vfs-dump-$(appveyor_repo_branch).zip + - path: SDL2.zip deploy: - provider: Environment name: xenia-master release: xenia-$(appveyor_repo_branch)-v$(appveyor_build_version) - artifact: xenia-$(appveyor_repo_branch).zip,xenia-vfs-dump-$(appveyor_repo_branch).zip + artifact: xenia-$(appveyor_repo_branch).zip,xenia-vfs-dump-$(appveyor_repo_branch).zip,SDL2.zip draft: false prerelease: true on: