aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjackpoz <giacomopoz@gmail.com>2020-09-19 23:40:48 +0200
committerShauren <shauren.trinity@gmail.com>2022-02-27 20:08:41 +0100
commit7a2c3af98831364988db25dd1bdd8ca10464c641 (patch)
treedf755c3f42327a655c4b3f122241eeccb736f8d6
parenta65b3493a7823ba543070c514d54f3c07c417bc1 (diff)
CI/AppVeyor: Add artifact without symbols for smaller download size
(cherry picked from commit a724903b8b307516780474dd23977d2a9b502eb5)
-rw-r--r--appveyor.yml14
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