-
Notifications
You must be signed in to change notification settings - Fork 266
Expand file tree
/
Copy pathbuild.ps1
More file actions
483 lines (399 loc) · 16.6 KB
/
Copy pathbuild.ps1
File metadata and controls
483 lines (399 loc) · 16.6 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
<#
.SYNOPSIS
Build script for OpenClaw Windows Hub
.DESCRIPTION
Builds all projects, checks prerequisites, and provides clear guidance.
.PARAMETER Project
Which project to build: All, Tray, WinUI, Shared, Cli, WinNodeCli, SetupEngine
Default: All
.PARAMETER Configuration
Build configuration: Debug, Release
Default: Debug
.PARAMETER CheckOnly
Only check prerequisites, don't build
.PARAMETER DevBuild
Build the WinUI app with the side-by-side dev identity. Defaults off so
release identity remains the default for every configuration.
.PARAMETER NoTrustRepository
Do not automatically add this checkout to git safe.directory when GitVersion
cannot read a repo owned by a different Windows account/group. The script
will print the manual command instead.
.EXAMPLE
.\build.ps1
.\build.ps1 -Project WinUI -Configuration Release
.\build.ps1 -CheckOnly
#>
param(
[ValidateSet("All", "Tray", "WinUI", "Shared", "Cli", "WinNodeCli", "SetupEngine")]
[string]$Project = "All",
[ValidateSet("Debug", "Release")]
[string]$Configuration = "Debug",
[switch]$CheckOnly,
[switch]$DevBuild,
[switch]$NoTrustRepository
)
$ErrorActionPreference = "Stop"
$repoRoot = Split-Path -Parent $MyInvocation.MyCommand.Path
Set-Location $repoRoot
# Colors for output
function Write-Header($text) { Write-Host "`n=== $text ===" -ForegroundColor Cyan }
function Write-Success($text) { Write-Host "✅ $text" -ForegroundColor Green }
function Write-Warning($text) { Write-Host "⚠️ $text" -ForegroundColor Yellow }
function Write-Error($text) { Write-Host "❌ $text" -ForegroundColor Red }
function Write-Info($text) { Write-Host " $text" -ForegroundColor Gray }
# Track issues
$issues = @()
function Test-WindowsHost {
$isWindowsVariable = Get-Variable -Name IsWindows -ErrorAction SilentlyContinue
if ($isWindowsVariable) {
return [bool]$isWindowsVariable.Value
}
return [System.Environment]::OSVersion.Platform -eq [System.PlatformID]::Win32NT
}
function ConvertTo-GitSafeDirectoryPath($path) {
return ([System.IO.Path]::GetFullPath($path).TrimEnd("\") -replace "\\", "/")
}
function Test-GitSafeDirectoryContains($path) {
$expected = (ConvertTo-GitSafeDirectoryPath $path).ToLowerInvariant()
$safeDirectories = & git config --global --get-all safe.directory 2>$null
if ($LASTEXITCODE -ne 0 -or -not $safeDirectories) {
return $false
}
foreach ($safeDirectory in $safeDirectories) {
if ($safeDirectory -eq "*") {
return $true
}
$normalized = ($safeDirectory.Trim().TrimEnd("\", "/") -replace "\\", "/").ToLowerInvariant()
if ($normalized -eq $expected) {
return $true
}
}
return $false
}
function Get-SecurityIdentifierValue($accountName) {
try {
return ([System.Security.Principal.NTAccount]$accountName).
Translate([System.Security.Principal.SecurityIdentifier]).
Value
} catch {
return $null
}
}
function Ensure-GitVersionRepositoryTrust {
if (-not (Test-Path (Join-Path $repoRoot ".git"))) {
return
}
$owner = (Get-Acl -LiteralPath $repoRoot).Owner
$currentIdentity = [System.Security.Principal.WindowsIdentity]::GetCurrent()
$ownerSid = Get-SecurityIdentifierValue $owner
if ($ownerSid -and $ownerSid -eq $currentIdentity.User.Value) {
return
}
if (Test-GitSafeDirectoryContains $repoRoot) {
return
}
$safeDirectory = ConvertTo-GitSafeDirectoryPath $repoRoot
Write-Warning "Repository owner is '$owner' but the current user is '$($currentIdentity.Name)'. GitVersion/LibGit2Sharp may reject this checkout unless it is trusted."
if ($NoTrustRepository -or $CheckOnly) {
Write-Info "Run this once, then retry:"
Write-Info "git config --global --add safe.directory `"$safeDirectory`""
$script:issues += "Repository is not trusted for GitVersion"
return
}
Write-Info "Adding git safe.directory entry: $safeDirectory"
& git config --global --add safe.directory $safeDirectory
if ($LASTEXITCODE -ne 0) {
Write-Error "Unable to add git safe.directory entry."
Write-Info "Run this once, then retry the build:"
Write-Info "git config --global --add safe.directory `"$safeDirectory`""
$script:issues += "Repository is not trusted for GitVersion"
return
}
Write-Success "Repository trusted for GitVersion"
}
function Ensure-GitVersionRepositoryHistory {
$insideWorkTree = & git -C $repoRoot rev-parse --is-inside-work-tree 2>$null
if ($LASTEXITCODE -ne 0 -or $insideWorkTree -ne "true") {
Write-Error "Git metadata not found. GitVersion requires a git clone with full history."
Write-Info "Clone the repository with git, then rerun .\build.ps1."
$script:issues += "Repository is missing git metadata required by GitVersion"
return
}
$isShallow = & git -C $repoRoot rev-parse --is-shallow-repository 2>$null
if ($LASTEXITCODE -eq 0 -and $isShallow -eq "true") {
Write-Error "Repository is a shallow clone. GitVersion requires full git history."
Write-Info "Run this once, then retry the build:"
Write-Info "git fetch --unshallow --tags origin"
$script:issues += "Repository is shallow; GitVersion requires full history"
}
}
Write-Host @"
🦞 OpenClaw Windows Hub - Build Script
=======================================
"@ -ForegroundColor Magenta
# =============================================================================
# PREREQUISITE CHECKS
# =============================================================================
Write-Header "Checking Prerequisites"
# Check OS
if (-not (Test-WindowsHost)) {
Write-Error "This project requires Windows"
exit 1
}
Write-Success "Windows detected"
# Check .NET SDK
$dotnetVersion = $null
try {
$dotnetVersion = & dotnet --version 2>$null
} catch {}
if (-not $dotnetVersion) {
Write-Error ".NET SDK not found"
Write-Info "Download from: https://dotnet.microsoft.com/download"
$issues += "Missing .NET SDK"
} else {
Write-Success ".NET SDK: $dotnetVersion"
# Check for .NET 10 (needed for all projects)
$sdks = & dotnet --list-sdks 2>$null
$hasNet10 = $sdks | Where-Object { $_ -match "^10\." }
if (-not $hasNet10) {
Write-Error ".NET 10 SDK not found (required for all projects)"
Write-Info "Download preview from: https://dotnet.microsoft.com/download/dotnet/10.0"
$issues += "Missing .NET 10 SDK"
} else {
Write-Success ".NET 10 SDK available"
}
}
# Check Git (GitVersion reads repository metadata during .NET builds)
$git = Get-Command git -ErrorAction SilentlyContinue
if (-not $git) {
Write-Error "Git not found (required by GitVersion during builds)"
Write-Info "Install via: winget install Git.Git"
Write-Info "Or download from: https://git-scm.com/download/win"
$issues += "Missing Git"
} else {
$gitVersion = & git --version 2>$null
if ($LASTEXITCODE -eq 0 -and $gitVersion) {
Write-Success "$gitVersion"
} else {
Write-Success "Git detected"
}
Ensure-GitVersionRepositoryTrust
Ensure-GitVersionRepositoryHistory
}
# Check Node.js + npm (WinUI build runs `npm ci` to restore @microsoft/mxc-sdk
# so it can copy wxc-exec.exe into the build output)
$nodeVersion = $null
try { $nodeVersion = & node --version 2>$null } catch {}
if (-not $nodeVersion) {
Write-Error "Node.js not found (required by WinUI build to restore @microsoft/mxc-sdk)"
Write-Info "Install via: winget install OpenJS.NodeJS.LTS"
Write-Info "Or download from: https://nodejs.org/"
$issues += "Missing Node.js"
} else {
Write-Success "Node.js: $nodeVersion"
$npmVersion = $null
try { $npmVersion = & npm --version 2>$null } catch {}
if (-not $npmVersion) {
Write-Error "npm not found on PATH (WinUI build invokes `npm ci`)"
Write-Info "npm normally ships with Node.js - reinstall Node.js or repair the install"
$issues += "Missing npm"
} else {
Write-Success "npm: $npmVersion"
}
}
# Check Windows SDK (for WinUI)
$windowsSdkPath = "${env:ProgramFiles(x86)}\Windows Kits\10\Include"
if (Test-Path $windowsSdkPath) {
$sdkVersions = @(
Get-ChildItem $windowsSdkPath -Directory |
Where-Object { $_.Name -match "^\d+\.\d+\.\d+\.\d+$" } |
Sort-Object { [version]$_.Name } -Descending |
Select-Object -ExpandProperty Name
)
if ($sdkVersions.Count -gt 0) {
Write-Success "Windows SDK: $($sdkVersions[0])"
} else {
Write-Warning "Windows 10 SDK not found (needed for WinUI build)"
Write-Info "Install via Visual Studio Installer, standalone SDK, or: winget install --id Microsoft.WindowsSDK.10.0.26100 -e"
$issues += "Windows 10 SDK not detected"
}
} else {
Write-Warning "Windows 10 SDK not found (needed for WinUI build)"
Write-Info "Install via Visual Studio Installer, standalone SDK, or: winget install --id Microsoft.WindowsSDK.10.0.26100 -e"
$issues += "Windows 10 SDK not detected"
}
# Check WebView2 Runtime (for WinUI chat window)
$webView2Key = "HKLM:\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\Clients\{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}"
$webView2KeyAlt = "HKCU:\SOFTWARE\Microsoft\EdgeUpdate\Clients\{F3017226-FE2A-4295-8BDF-00C3A9A7E4C5}"
$webView2Version = $null
if (Test-Path $webView2Key) {
$webView2Version = (Get-ItemProperty $webView2Key -ErrorAction SilentlyContinue).pv
} elseif (Test-Path $webView2KeyAlt) {
$webView2Version = (Get-ItemProperty $webView2KeyAlt -ErrorAction SilentlyContinue).pv
}
if ($webView2Version) {
Write-Success "WebView2 Runtime: $webView2Version"
} else {
Write-Warning "WebView2 Runtime not detected (needed for WinUI chat window)"
Write-Info "Usually pre-installed on Windows 10/11. Get from: https://developer.microsoft.com/microsoft-edge/webview2"
# Not a hard failure - app will fall back to browser
}
# Check architecture
$arch = $env:PROCESSOR_ARCHITECTURE
Write-Success "Architecture: $arch"
if ($arch -eq "ARM64") {
Write-Info "ARM64 detected - builds will target ARM64 by default"
}
# Summary
Write-Header "Prerequisite Summary"
if ($issues.Count -eq 0) {
Write-Success "All prerequisites met!"
} else {
Write-Warning "$($issues.Count) issue(s) found:"
foreach ($issue in $issues) {
Write-Info "- $issue"
}
}
Write-Header "Validating Documentation"
& (Join-Path $repoRoot "scripts\validate-docs.ps1") -RepoRoot $repoRoot
if ($LASTEXITCODE -ne 0) {
exit $LASTEXITCODE
}
if ($CheckOnly) {
Write-Host "`nRun without -CheckOnly to build.`n"
exit 0
}
if ($issues.Count -gt 0) {
Write-Host "`nFix the prerequisite issue(s) above, then rerun .\build.ps1.`n" -ForegroundColor Yellow
exit 1
}
# =============================================================================
# BUILD
# =============================================================================
Write-Header "Building Projects ($Configuration)"
# Detect runtime identifier based on architecture
$rid = switch ($arch) {
"ARM64" { "win-arm64" }
default { "win-x64" }
}
Write-Info "Runtime identifier: $rid"
$buildResults = @{}
function Invoke-DotNetCaptured($arguments) {
$previousErrorActionPreference = $ErrorActionPreference
$ErrorActionPreference = "Continue"
try {
return & dotnet @arguments 2>&1
} finally {
$ErrorActionPreference = $previousErrorActionPreference
}
}
function Build-Project($name, $path, $useRid = $false) {
Write-Host "`nBuilding $name..." -ForegroundColor White
if (-not (Test-Path $path)) {
Write-Error "Project not found: $path"
return $false
}
$dotnetArgs = @("build", $path, "-c", $Configuration)
# WinUI requires runtime identifier for self-contained WebView2 support
if ($useRid) {
$dotnetArgs += @("-r", $rid)
}
if ($DevBuild -and ($name -eq "WinUI" -or $name -eq "Tray")) {
$dotnetArgs += "-p:DevBuild=true"
}
$result = Invoke-DotNetCaptured $dotnetArgs
$exitCode = $LASTEXITCODE
if ($exitCode -eq 0) {
Write-Success "$name built successfully"
return $true
} else {
Write-Error "$name build failed"
# Show relevant error lines
$result | Select-String "error" | Select-Object -First 5 | ForEach-Object {
Write-Info $_.Line
}
$lockingProcesses = $result |
Select-String 'file is locked by: "(.+) \((\d+)\)"' |
ForEach-Object {
[PSCustomObject]@{
Name = $_.Matches[0].Groups[1].Value
Id = $_.Matches[0].Groups[2].Value
}
} |
Sort-Object Id -Unique
foreach ($lockingProcess in $lockingProcesses) {
Write-Warning "Build output is locked by $($lockingProcess.Name) (PID $($lockingProcess.Id)). Close the app, or run: Stop-Process -Id $($lockingProcess.Id)"
}
return $false
}
}
function Get-ProjectTargetFramework($path) {
if (-not (Test-Path $path)) {
return $null
}
[xml]$projectXml = Get-Content $path -Raw
return $projectXml.Project.PropertyGroup |
ForEach-Object { $_.TargetFramework } |
Where-Object { $_ } |
Select-Object -First 1
}
$projects = @{
"Shared" = @{ Path = "src/OpenClaw.Shared/OpenClaw.Shared.csproj"; UseRid = $false }
"Cli" = @{ Path = "src/OpenClaw.Cli/OpenClaw.Cli.csproj"; UseRid = $false }
"WinNodeCli" = @{ Path = "src/OpenClaw.WinNode.Cli/OpenClaw.WinNode.Cli.csproj"; UseRid = $false }
"Tray" = @{ Path = "src/OpenClaw.Tray.WinUI/OpenClaw.Tray.WinUI.csproj"; UseRid = $true }
"WinUI" = @{ Path = "src/OpenClaw.Tray.WinUI/OpenClaw.Tray.WinUI.csproj"; UseRid = $true }
"SetupEngine" = @{ Path = "src/OpenClaw.SetupEngine/OpenClaw.SetupEngine.csproj"; UseRid = $false }
}
$toBuild = if ($Project -eq "All") { @("Shared", "Cli", "WinNodeCli", "SetupEngine", "WinUI") } else { @($Project) }
# Always build Shared first if building other projects
if ($Project -ne "Shared" -and $Project -ne "All" -and $toBuild -notcontains "Shared") {
$toBuild = @("Shared") + $toBuild
}
for ($i = 0; $i -lt $toBuild.Count; $i++) {
$proj = $toBuild[$i]
if ($projects.ContainsKey($proj)) {
$projInfo = $projects[$proj]
$buildResults[$proj] = Build-Project $proj $projInfo.Path $projInfo.UseRid
if ($proj -eq "Shared" -and -not $buildResults[$proj] -and $i -lt ($toBuild.Count - 1)) {
Write-Warning "Skipping remaining projects because Shared failed."
break
}
}
}
Write-Header "Build Summary"
$successCount = ($buildResults.Values | Where-Object { $_ -eq $true }).Count
$failCount = ($buildResults.Values | Where-Object { $_ -eq $false }).Count
foreach ($proj in $buildResults.Keys) {
if ($buildResults[$proj]) {
Write-Success "$proj"
} else {
Write-Error "$proj"
}
}
Write-Host ""
if ($failCount -eq 0) {
Write-Host "🦞 All builds succeeded!" -ForegroundColor Green
Write-Host "`nTo run:" -ForegroundColor Cyan
if (($buildResults.ContainsKey("WinUI") -and $buildResults["WinUI"]) -or ($buildResults.ContainsKey("Tray") -and $buildResults["Tray"])) {
$winUIProjectPath = $projects["WinUI"].Path
$winUITargetFramework = Get-ProjectTargetFramework $winUIProjectPath
$winUIProjectDirectory = (Split-Path -Parent $winUIProjectPath).Replace("/", "\")
if ($winUITargetFramework) {
$winUIOutputDirectory = ".\$winUIProjectDirectory\bin\$Configuration\$winUITargetFramework\$rid"
$winUIManifestPath = ".\$winUIProjectDirectory\Package.appxmanifest"
$runIdentitySwitch = if ($DevBuild) { " -Dev" } else { "" }
Write-Host " WinUI: .\run-app-local.ps1 -NoBuild$runIdentitySwitch" -ForegroundColor White
Write-Host " Isolated: .\run-app-local.ps1 -NoBuild -Isolated$runIdentitySwitch" -ForegroundColor White
Write-Host " Dev: .\run-app-local.ps1 -Dev" -ForegroundColor White
Write-Host " WinApp: .\run-app-local.ps1 -NoBuild -UseWinApp$runIdentitySwitch" -ForegroundColor White
Write-Host " Direct launch is default. -UseWinApp runs: winapp run `"$winUIOutputDirectory`" --manifest `"$winUIManifestPath`" --executable `"OpenClaw.Tray.WinUI.exe`" --debug-output" -ForegroundColor DarkGray
} else {
Write-Warning "Unable to determine WinUI target framework from $winUIProjectPath"
}
}
} else {
Write-Host "❌ $failCount build(s) failed" -ForegroundColor Red
exit 1
}
Write-Host ""