oh-my-posh/packages/msi/build.ps1

57 lines
1.7 KiB
PowerShell
Raw Normal View History

2024-11-19 05:42:20 -08:00
Param
(
[parameter(Mandatory = $true)]
[ValidateSet('x64', 'arm64', 'x86')]
[System.String]$Architecture,
[parameter(Mandatory = $true)]
[string]
$Version,
[parameter(Mandatory = $false)]
[string]
$SDKVersion = "10.0.22621.0",
[switch]$Sign,
[switch]$Copy
2024-11-19 05:42:20 -08:00
)
$PSDefaultParameterValues['Out-File:Encoding'] = 'UTF8'
New-Item -Path "." -Name "dist" -ItemType Directory -ErrorAction SilentlyContinue
New-Item -Path "." -Name "out" -ItemType Directory -ErrorAction SilentlyContinue
if ($Copy) {
2024-11-23 23:56:02 -08:00
switch ($Architecture) {
'x86' { $file = "posh-windows-386.exe" }
'x64' { $file = "posh-windows-amd64.exe" }
Default { $file = "posh-windows-$Architecture.exe" }
}
# copy the correct architecture to ./dist
Copy-Item -Path "../../dist/$file" -Destination "./dist/oh-my-posh.exe"
2024-11-19 05:42:20 -08:00
}
# variables
$env:VERSION = $Version
# create MSI
$fileName = "install-$Architecture.msi"
$installer = "./out/$fileName"
2024-11-19 05:42:20 -08:00
wix build -arch $Architecture -out $installer .\oh-my-posh.wxs
if ($Sign) {
# setup dependencies
nuget.exe install Microsoft.Trusted.Signing.Client -Version 1.0.60 -x
$signtoolDlib = "$PWD/Microsoft.Trusted.Signing.Client/bin/x64/Azure.CodeSigning.Dlib.dll"
$signtool = "C:/Program Files (x86)/Windows Kits/10/bin/$SDKVersion/x64/signtool.exe"
# clean paths
$signtool = $signtool -Replace '\\', '/'
$signtoolDlib = $signtoolDlib -Replace '\\', '/'
# sign installer
& "$signtool" sign /v /debug /fd SHA256 /tr 'http://timestamp.acs.microsoft.com' /td SHA256 /dlib "$signtoolDlib" /dmdf ../../src/metadata.json $installer
}
# get hash
$zipHash = Get-FileHash $installer -Algorithm SHA256
$zipHash.Hash | Out-File -Encoding 'UTF8' "$installer.sha256"