Skip to content

Commit b9715fb

Browse files
WebKit ARM64 Builderclaude
andcommitted
Fix WinGet installation in GitHub Actions for ARM64 Windows CI
Added WinGet installation step using Add-AppxPackage to resolve dependency installation issues on ARM64 Windows runners. WinGet provides better ARM64 package support than Scoop for this platform. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 7339900 commit b9715fb

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,6 +256,9 @@ jobs:
256256
steps:
257257
- name: Install dependencies via WinGet
258258
run: |
259+
# Install WinGet first (not available by default on GitHub Actions)
260+
Add-AppxPackage -RegisterByFamilyName -MainPackage Microsoft.DesktopAppInstaller_8wekyb3d8bbwe
261+
259262
# Install all required tools via WinGet (has better ARM64 support)
260263
winget install --id=Kitware.CMake -e --silent --accept-source-agreements --accept-package-agreements
261264
winget install --id=Ninja-build.Ninja -e --silent --accept-source-agreements --accept-package-agreements

0 commit comments

Comments
 (0)