mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
ci: add Avalonia build processing to post_build script
- Add Delete-Unused-Avalonia function to remove duplicate DLLs in Avalonia output - Add Remove-CreateDumpExe-Avalonia function to clean up createdump.exe - Call Avalonia processing functions in Main after WPF processing
This commit is contained in:
parent
ae0bdbc6bc
commit
82390b580e
1 changed files with 33 additions and 0 deletions
|
|
@ -55,6 +55,35 @@ function Remove-CreateDumpExe ($path, $config) {
|
|||
Remove-Item -Path $target -Include "*createdump.exe" -Recurse
|
||||
}
|
||||
|
||||
function Remove-CreateDumpExe-Avalonia ($path, $config) {
|
||||
$target = "$path\Output\$config\Avalonia"
|
||||
|
||||
if (Test-Path "$target\Flow.Launcher.Avalonia.deps.json") {
|
||||
$depjson = Get-Content $target\Flow.Launcher.Avalonia.deps.json -raw
|
||||
$depjson -replace '(?s)(.createdump.exe": {.*?}.*?\n)\s*', "" | Out-File $target\Flow.Launcher.Avalonia.deps.json -Encoding UTF8
|
||||
}
|
||||
Remove-Item -Path $target -Include "*createdump.exe" -Recurse -ErrorAction SilentlyContinue
|
||||
}
|
||||
|
||||
function Delete-Unused-Avalonia ($path, $config) {
|
||||
$target = "$path\Output\$config\Avalonia"
|
||||
|
||||
if (!(Test-Path $target)) {
|
||||
Write-Host "Avalonia output not found at $target, skipping..."
|
||||
return
|
||||
}
|
||||
|
||||
$included = Get-ChildItem $target -Filter "*.dll"
|
||||
if (Test-Path "$target\Plugins") {
|
||||
foreach ($i in $included){
|
||||
$deleteList = Get-ChildItem $target\Plugins -Include $i -Recurse | Where { $_.VersionInfo.FileVersion -eq $i.VersionInfo.FileVersion -And $_.Name -eq "$i" }
|
||||
$deleteList | ForEach-Object{ Write-Host Deleting duplicated $_.Name with version $_.VersionInfo.FileVersion at location $_.Directory.FullName }
|
||||
$deleteList | Remove-Item
|
||||
}
|
||||
}
|
||||
Remove-Item -Path $target -Include "*.xml" -Recurse -ErrorAction SilentlyContinue
|
||||
}
|
||||
|
||||
|
||||
function Validate-Directory ($output) {
|
||||
New-Item $output -ItemType Directory -Force
|
||||
|
|
@ -126,6 +155,10 @@ function Main {
|
|||
|
||||
Remove-CreateDumpExe $p $config
|
||||
|
||||
# Process Avalonia build
|
||||
Delete-Unused-Avalonia $p $config
|
||||
Remove-CreateDumpExe-Avalonia $p $config
|
||||
|
||||
$o = "$p\Output\Packages"
|
||||
Validate-Directory $o
|
||||
Pack-Squirrel-Installer $p $v $o
|
||||
|
|
|
|||
Loading…
Reference in a new issue