-
Notifications
You must be signed in to change notification settings - Fork 8.5k
[Tool] Script to build an installer locally #39017
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
Merged
Merged
Changes from 3 commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
d32fb44
add script to build a installer
vanzue 242ba82
minor fix
vanzue 3289f4c
fix search path for msix file
vanzue def90e6
fix sign
vanzue 302e139
fix sign
vanzue dc11217
fix spelling
vanzue 821698c
Fix powershell5 can't recognize emoji
vanzue 2e69c30
ensure-wix
vanzue aa77b32
bring cmdpal available during local build
vanzue bce1dff
remove early quit
vanzue 0f21476
fix marco
vanzue faa4c03
add logger
vanzue 691cc93
doc
vanzue b37f4eb
add a note
vanzue d404faf
self review
vanzue b15209f
Merge remote-tracking branch 'origin/main' into dev/vanzue/build-script
vanzue 2100f3d
Merge remote-tracking branch 'origin/main' into dev/vanzue/build-script
vanzue 7c1a3a4
fix macro def
vanzue de231d3
add functionality to export cert so that other machine can install it.
vanzue 736b14d
spelling
vanzue File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,81 @@ | ||
| param ( | ||
| [string]$Platform = 'arm64', | ||
| [string]$Configuration = 'Release' | ||
| ) | ||
|
|
||
| $repoRoot = Resolve-Path "$PSScriptRoot\..\.." | ||
| Set-Location $repoRoot | ||
|
|
||
| function RunMSBuild { | ||
| param ( | ||
| [string]$Solution, | ||
| [string]$ExtraArgs | ||
| ) | ||
|
|
||
| $base = @( | ||
| $Solution | ||
| "/p:Platform=`"$Platform`"" | ||
| "/p:Configuration=$Configuration" | ||
| '/verbosity:normal' | ||
| '/clp:Summary;PerformanceSummary;ErrorsOnly;WarningsOnly' | ||
| '/nologo' | ||
|
|
||
| ) | ||
|
|
||
| $cmd = $base + ($ExtraArgs -split ' ') | ||
| Write-Host ("[MSBUILD] {0} {1}" -f $Solution, ($cmd -join ' ')) | ||
| & msbuild.exe @cmd | ||
|
|
||
| if ($LASTEXITCODE -ne 0) { | ||
| Write-Error ("Build failed: {0} {1}" -f $Solution, $ExtraArgs) | ||
| exit $LASTEXITCODE | ||
| } | ||
|
|
||
| } | ||
|
|
||
| function RestoreThenBuild { | ||
| param ([string]$Solution) | ||
|
|
||
| # 1) restore | ||
| RunMSBuild $Solution '/t:restore /p:RestorePackagesConfig=true' | ||
| # 2) build ------------------------------------------------- | ||
| RunMSBuild $Solution '/m' | ||
| } | ||
|
|
||
| Write-Host ("[PIPELINE] Start | Platform={0} Configuration={1}" -f $Platform, $Configuration) | ||
| Write-Host '' | ||
|
|
||
| $cmdpalOutputPath = Join-Path $repoRoot "$Platform\$Configuration\WinUI3Apps\CmdPal" | ||
|
|
||
| if (Test-Path $cmdpalOutputPath) { | ||
| Write-Host "[CLEAN] Removing previous output: $cmdpalOutputPath" | ||
| Remove-Item $cmdpalOutputPath -Recurse -Force -ErrorAction Ignore | ||
| } | ||
|
|
||
| RestoreThenBuild '.\PowerToys.sln' | ||
|
|
||
| $msixSearchRoot = Join-Path $repoRoot "$Platform\$Configuration" | ||
| $msixFiles = Get-ChildItem -Path $msixSearchRoot -Recurse -Filter *.msix | | ||
| Select-Object -ExpandProperty FullName | ||
|
|
||
| if ($msixFiles.Count) { | ||
| Write-Host ("[SIGN] {0} .msix file(s)" -f $msixFiles.Count) | ||
| & "$PSScriptRoot\cert-sign-package.ps1" -TargetPaths $msixFiles | ||
| } | ||
| else { | ||
| Write-Warning "[SIGN] No .msix files found in $msixSearchRoot" | ||
| } | ||
|
|
||
|
|
||
| RestoreThenBuild '.\tools\BugReportTool\BugReportTool.sln' | ||
| RestoreThenBuild '.\tools\StylesReportTool\StylesReportTool.sln' | ||
|
|
||
| Write-Host '[CLEAN] installer (keep *.exe)' | ||
| git clean -xfd -e '*.exe' -- .\installer\ | Out-Null | ||
|
|
||
| RestoreThenBuild '.\installer\PowerToysSetup.sln' | ||
|
|
||
| RunMSBuild '.\installer\PowerToysSetup.sln' '/m /t:PowerToysInstaller' | ||
|
|
||
| RunMSBuild '.\installer\PowerToysSetup.sln' '/m /t:PowerToysBootstrapper' | ||
|
|
||
| Write-Host '[PIPELINE] Completed' | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| param ( | ||
| [string]$certSubject = "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", | ||
| [string[]]$TargetPaths | ||
| ) | ||
|
|
||
| . "$PSScriptRoot\cert-management.ps1" | ||
| $cert = EnsureCertificate -certSubject $certSubject | ||
|
|
||
| if (-not $cert) { | ||
| Write-Error "❌ Failed to prepare certificate." | ||
| exit 1 | ||
| } | ||
|
|
||
| Write-Host "✔️ Certificate ready: $($cert.Thumbprint)" | ||
|
|
||
| if (-not $TargetPaths -or $TargetPaths.Count -eq 0) { | ||
| Write-Error "❌ No target files provided to sign." | ||
| exit 1 | ||
| } | ||
|
|
||
| foreach ($filePath in $TargetPaths) { | ||
| if (-not (Test-Path $filePath)) { | ||
| Write-Warning "⚠️ Skipping: File does not exist - $filePath" | ||
| continue | ||
| } | ||
|
|
||
| Write-Host "🔏 Signing: $filePath" | ||
| try { | ||
| & signtool sign /sha1 $($cert.Thumbprint) /fd SHA256 /t http://timestamp.digicert.com "$filePath" | ||
| } | ||
| catch { | ||
| Write-Host "Signing file: $($file.FullName)" | ||
| } | ||
| } | ||
|
|
||
| Write-Host "`n✅ Signing process completed." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| param ( | ||
| [string]$certSubject = "CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US", | ||
| [string[]]$TargetPaths | ||
| ) | ||
|
|
||
| . "$PSScriptRoot\cert-management.ps1" | ||
| $cert = EnsureCertificate -certSubject $certSubject | ||
|
|
||
| if (-not $cert) { | ||
| Write-Error "❌ Failed to prepare certificate." | ||
| exit 1 | ||
| } | ||
|
|
||
| Write-Host "✔️ Certificate ready: $($cert.Thumbprint)" | ||
|
|
||
| if (-not $TargetPaths -or $TargetPaths.Count -eq 0) { | ||
| Write-Error "❌ No target files provided to sign." | ||
| exit 1 | ||
| } | ||
|
|
||
| foreach ($filePath in $TargetPaths) { | ||
| if (-not (Test-Path $filePath)) { | ||
| Write-Warning "⚠️ Skipping: File does not exist - $filePath" | ||
| continue | ||
| } | ||
|
|
||
| Write-Host "🔏 Signing: $filePath" | ||
| try { | ||
| & signtool sign /sha1 $($cert.Thumbprint) /fd SHA256 /t http://timestamp.digicert.com "$filePath" | ||
| } | ||
| catch { | ||
| Write-Host "Signing file: $($file.FullName)" | ||
| } | ||
| } | ||
|
|
||
| Write-Host "`n✅ Signing process completed." |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.