-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmake.ps1
75 lines (60 loc) · 2.01 KB
/
make.ps1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
param (
[System.Version]$Version = "0.0.0.0",
[string]$Arch = "x64",
[string]$CompanyName = "ONLYOFFICE",
[string]$ProductName = "DocumentBuilder",
[string]$SourceDir,
[string]$BuildDir = "build",
[switch]$Sign
)
$ErrorActionPreference = "Stop"
Set-Location $PSScriptRoot
if (-not $SourceDir) {
$BuildPrefix = switch ($Arch) {
"x64" { "win_64" }
"x86" { "win_32" }
}
$SourceDir = "$PSScriptRoot\..\build_tools\out\" `
+ "$BuildPrefix\$CompanyName\$ProductName" | Resolve-Path
}
if (-not (Test-Path "$SourceDir")) {
Write-Error "Path `"$SourceDir`" does not exist"
}
Write-Host @"
Version $Version
Arch $Arch
CompanyName $CompanyName
ProductName $ProductName
SourceDir $SourceDir
BuildDir $BuildDir
Sign $Sign
"@
####
Write-Host "`n[ Prepare build directory ]"
if (Test-Path "$BuildDir") {
Write-Host "REMOVE DIR: $BuildDir"
Remove-Item -Force -Recurse -LiteralPath "$BuildDir"
}
Write-Host "CREATE DIR: $BuildDir"
New-Item -ItemType Directory -Force -Path "$BuildDir" | Out-Null
Write-Host "COPY: $SourceDir\* > $BuildDir\"
Copy-Item -Force -Recurse `
-Path "$SourceDir\*" `
-Destination "$BuildDir\"
####
Write-Host "`n[ Sign files ]"
if ($Sign) {
Set-Location "$BuildDir"
$CertName = $(if ($env:WINDOWS_CERTIFICATE_NAME) { `
$env:WINDOWS_CERTIFICATE_NAME } else { "Ascensio System SIA" })
$TimestampServer = "http://timestamp.digicert.com"
$SignFiles = Get-ChildItem *.exe, *.dll | Resolve-Path -Relative
$SignFiles
Write-Host "signtool sign /a /n $CertName /t $TimestampServer /v ..."
& signtool sign /a /n $CertName /t $TimestampServer /v $SignFiles
if (-not $?) { throw "Exited with code $LastExitCode" }
Write-Host "signtool verify /q /pa /all ..."
& signtool verify /q /pa /all $SignFiles | Out-Null
if (-not $?) { throw "Exited with code $LastExitCode" }
Set-Location $PSScriptRoot
}