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.
This commit is contained in:
parent
da066e8ed8
commit
1d700f1dfa
|
@ -25,6 +25,9 @@ $env:BUILD_UPDATE = $MSVC_SEVENZIP
|
||||||
|
|
||||||
$BUILD_DIR = ".\build\bin\Release"
|
$BUILD_DIR = ".\build\bin\Release"
|
||||||
|
|
||||||
|
# Cleanup unneeded data in submodules
|
||||||
|
git submodule foreach git clean -fxd
|
||||||
|
|
||||||
# Upload debugging symbols
|
# Upload debugging symbols
|
||||||
mkdir pdb
|
mkdir pdb
|
||||||
Get-ChildItem "$BUILD_DIR\" -Recurse -Filter "*.pdb" | Copy-Item -destination .\pdb
|
Get-ChildItem "$BUILD_DIR\" -Recurse -Filter "*.pdb" | Copy-Item -destination .\pdb
|
||||||
|
|
Reference in New Issue