Skip to content

Commit

Permalink
Trim FunctionsNetHost artifacts (#10364)
Browse files Browse the repository at this point in the history
  • Loading branch information
jviau authored and arroyc committed Aug 2, 2024
1 parent 27a14df commit eca3390
Showing 1 changed file with 8 additions and 0 deletions.
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

0 comments on commit eca3390

Please sign in to comment.