diff options
| author | 2016-09-01 10:47:31 -0600 | |
|---|---|---|
| committer | 2016-09-01 10:47:31 -0600 | |
| commit | 93bcd00e44f42757307cf76ef7c810637ac9dd85 (patch) | |
| tree | 4de2115f8557ed1439e2dea51ea34dd145d0e0be | |
| parent | Merge pull request #2038 from MerryMage/rm-tests (diff) | |
| download | yuzu-93bcd00e44f42757307cf76ef7c810637ac9dd85.tar.gz yuzu-93bcd00e44f42757307cf76ef7c810637ac9dd85.tar.xz yuzu-93bcd00e44f42757307cf76ef7c810637ac9dd85.zip | |
Create a separate archive for debugsymbols on windows
This reduces the main download size and uploads the symbols to a different
directory
| -rw-r--r-- | appveyor.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index 898690faa..0ffb680ff 100644 --- a/appveyor.yml +++ b/appveyor.yml | |||
| @@ -42,11 +42,16 @@ on_success: | |||
| 42 | $GITREV = $(git show -s --format='%h') | 42 | $GITREV = $(git show -s --format='%h') |
| 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_PDB = "citra-${GITDATE}-${GITREV}-windows-amd64-debugsymbols.7z" -replace " ","" | ||
| 45 | $BUILD_NAME_NOQT = "citra-noqt-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" | 46 | $BUILD_NAME_NOQT = "citra-noqt-${GITDATE}-${GITREV}-windows-amd64.7z" -replace " ","" |
| 46 | 47 | ||
| 47 | # Remove unnecessary files | 48 | # Remove unnecessary files |
| 48 | rm .\build\bin\release\*tests* | 49 | rm .\build\bin\release\*tests* |
| 49 | 50 | ||
| 51 | # Put the pdb files in a separate archive and remove them from the main download | ||
| 52 | 7z a $BUILD_NAME_PDB .\build\bin\release\*.pdb | ||
| 53 | rm .\build\bin\release\*.pdb | ||
| 54 | |||
| 50 | # Zip up the build folder and documentation | 55 | # Zip up the build folder and documentation |
| 51 | 7z a $BUILD_NAME .\build\bin\release\* .\license.txt .\README.md | 56 | 7z a $BUILD_NAME .\build\bin\release\* .\license.txt .\README.md |
| 52 | # Do a second archive with only the binaries (excludes dlls) and documentation | 57 | # Do a second archive with only the binaries (excludes dlls) and documentation |
| @@ -61,5 +66,6 @@ on_success: | |||
| 61 | "open sftp://citra-builds:${env:BUILD_PASSWORD}@builds.citra-emu.org -hostkey=*" ` | 66 | "open sftp://citra-builds:${env:BUILD_PASSWORD}@builds.citra-emu.org -hostkey=*" ` |
| 62 | "put $BUILD_NAME /citra/nightly/windows-amd64/" ` | 67 | "put $BUILD_NAME /citra/nightly/windows-amd64/" ` |
| 63 | "put $BUILD_NAME_NOQT /citra/nightly/windows-noqt-amd64/" ` | 68 | "put $BUILD_NAME_NOQT /citra/nightly/windows-noqt-amd64/" ` |
| 69 | "put $BUILD_NAME_PDB /citra/nightly/windows-amd64-debugsymbols/" ` | ||
| 64 | "exit" | 70 | "exit" |
| 65 | } | 71 | } |