diff options
| author | 2016-09-01 11:40:53 -0400 | |
|---|---|---|
| committer | 2016-09-01 11:40:53 -0400 | |
| commit | b9c857be819bf82ce7a5d38e18f41bb82e68a483 (patch) | |
| tree | e0154ed671841ef854027ebf12d912f7289485ba | |
| parent | Merge pull request #2032 from bunnei/qt-graphics (diff) | |
| parent | appveyor: Remove tests.exe and tests.pdb from archive (diff) | |
| download | yuzu-b9c857be819bf82ce7a5d38e18f41bb82e68a483.tar.gz yuzu-b9c857be819bf82ce7a5d38e18f41bb82e68a483.tar.xz yuzu-b9c857be819bf82ce7a5d38e18f41bb82e68a483.zip | |
Merge pull request #2038 from MerryMage/rm-tests
appveyor: Remove tests.exe and tests.pdb from archive
| -rw-r--r-- | appveyor.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index 28c902bee..898690faa 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
| @@ -43,6 +43,10 @@ on_success: | |||
| 43 | # Where are these spaces coming from? Regardless, let's remove them | 43 | # Where are these spaces coming from? Regardless, let's remove them |
| 44 | $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" | 44 | $BUILD_NAME = "citra-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" |
| 45 | $BUILD_NAME_NOQT = "citra-noqt-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" | 45 | $BUILD_NAME_NOQT = "citra-noqt-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" |
| 46 | |||
| 47 | # Remove unnecessary files | ||
| 48 | rm .\build\bin\release\*tests* | ||
| 49 | |||
| 46 | # Zip up the build folder and documentation | 50 | # Zip up the build folder and documentation |
| 47 | 7z a $BUILD_NAME .\build\bin\release\* .\license.txt .\README.md | 51 | 7z a $BUILD_NAME .\build\bin\release\* .\license.txt .\README.md |
| 48 | # Do a second archive with only the binaries (excludes dlls) and documentation | 52 | # Do a second archive with only the binaries (excludes dlls) and documentation |