diff options
| author | 2022-07-23 10:16:44 -0400 | |
|---|---|---|
| committer | 2022-07-23 10:16:44 -0400 | |
| commit | 1d700f1dfa6a594792a9f6dfdcf6925ce09a49fc (patch) | |
| tree | 01b8b9a64623731c54aad223a274cc6567243a2c /.ci/scripts/windows/upload.ps1 | |
| parent | Merge pull request #8584 from Morph1984/qt5-cleanup (diff) | |
| download | yuzu-1d700f1dfa6a594792a9f6dfdcf6925ce09a49fc.tar.gz yuzu-1d700f1dfa6a594792a9f6dfdcf6925ce09a49fc.tar.xz yuzu-1d700f1dfa6a594792a9f6dfdcf6925ce09a49fc.zip | |
ci/windows: Cleanup unused data before packaging
vcpkg data takes up a lot of space, and currently the scripts will
package all that data with the source archive which is unnecessary.
Diffstat (limited to '')
| -rw-r--r-- | .ci/scripts/windows/upload.ps1 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.ci/scripts/windows/upload.ps1 b/.ci/scripts/windows/upload.ps1 index 62483607b..818fd0770 100644 --- a/.ci/scripts/windows/upload.ps1 +++ b/.ci/scripts/windows/upload.ps1 | |||
| @@ -25,6 +25,9 @@ $env:BUILD_UPDATE = $MSVC_SEVENZIP | |||
| 25 | 25 | ||
| 26 | $BUILD_DIR = ".\build\bin\Release" | 26 | $BUILD_DIR = ".\build\bin\Release" |
| 27 | 27 | ||
| 28 | # Cleanup unneeded data in submodules | ||
| 29 | git submodule foreach git clean -fxd | ||
| 30 | |||
| 28 | # Upload debugging symbols | 31 | # Upload debugging symbols |
| 29 | mkdir pdb | 32 | mkdir pdb |
| 30 | Get-ChildItem "$BUILD_DIR\" -Recurse -Filter "*.pdb" | Copy-Item -destination .\pdb | 33 | Get-ChildItem "$BUILD_DIR\" -Recurse -Filter "*.pdb" | Copy-Item -destination .\pdb |