diff options
author | jackpoz <giacomopoz@gmail.com> | 2020-09-19 23:40:48 +0200 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2022-02-27 20:08:41 +0100 |
commit | 7a2c3af98831364988db25dd1bdd8ca10464c641 (patch) | |
tree | df755c3f42327a655c4b3f122241eeccb736f8d6 /appveyor.yml | |
parent | a65b3493a7823ba543070c514d54f3c07c417bc1 (diff) |
CI/AppVeyor: Add artifact without symbols for smaller download size
(cherry picked from commit a724903b8b307516780474dd23977d2a9b502eb5)
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 80bc9f2b598..8d5d8e3b3fd 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -23,7 +23,19 @@ build_script: copy "%OPENSSL_ROOT_DIR%\ssleay32.dll" ssleay32.dll copy "%OPENSSL_ROOT_DIR%\libeay32.dll" libeay32.dll + + cd .. + + 7z a TrinityCoreWin64VS2019.zip .\RelWithDebInfo\* + + del /F /Q /S "RelWithDebInfo\*.pdb" > NUL + + 7z a TrinityCoreWin64VS2019NoSymbols.zip .\RelWithDebInfo\* + test: off artifacts: -- path: build\bin\RelWithDebInfo\ +- path: build\bin\TrinityCoreWin64VS2019.zip name: TrinityCoreWin64VS2019 + +- path: build\bin\TrinityCoreWin64VS2019NoSymbols.zip + name: TrinityCoreWin64VS2019NoSymbols |