Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[in-proc backport] Trim FunctionsNetHost artifacts #10364

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions build/build-extensions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ function BuildRuntime([string] $targetRid, [bool] $isSelfContained) {

Write-Host ""
$symbols = Get-ChildItem -Path $publishTarget -Filter *.pdb
$symbols += Get-ChildItem -Path "$publishTarget\workers\dotnet-isolated\*" -Include "*.pdb", "*.dbg" -Recurse
Write-Host "Zipping symbols: $($symbols.Count) symbols found"

$symbolsPath = "$publishDir\Symbols"
Expand Down Expand Up @@ -107,6 +108,13 @@ function CleanOutput([string] $rootPath) {
ForEach-Object { Get-ChildItem "$($_.FullName)\runtimes" -Directory -Exclude $keepRuntimes } |
Remove-Item -Recurse -Force -ErrorAction SilentlyContinue

Write-Host " Removing FunctionsNetHost(linux executable) and dependencies from dotnet-isolated worker"
$dotnetIsolatedBinPath = Join-Path $rootPath "workers\dotnet-isolated\bin"
if (Test-Path $dotnetIsolatedBinPath) {
Remove-Item -Path (Join-Path $dotnetIsolatedBinPath "FunctionsNetHost") -ErrorAction SilentlyContinue
Get-ChildItem -Path $dotnetIsolatedBinPath -Filter "*.so" | Remove-Item -ErrorAction SilentlyContinue
}

Write-Host " Current size: $(GetFolderSizeInMb $rootPath) Mb"
}

Expand Down
Loading