Skip to content

Commit faec288

Browse files
committed
misc: Make sure to install the WDK redistributable we need for the build to succeed on Windows
1 parent e938756 commit faec288

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build-windows.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ jobs:
3131
echo "$env:HOMEDRIVE$env:HOMEPATH\\.local\\bin" >> $env:GITHUB_PATH
3232
echo "$env:HOMEDRIVE$env:HOMEPATH\\.cargo\\bin" >> $env:GITHUB_PATH
3333
echo "GITHUB_WORKSPACE=$(pwd)" >> $env:GITHUB_ENV
34+
- name: Install WDK redist components
35+
run: |
36+
Invoke-WebRequest https://go.microsoft.com/fwlink/p/?LinkID=253170 -OutFile wdk-redist.msi
37+
Start-Process -FilePath msiexec -Verb Runas -ArgumentList "/i","$PWD\wdk-redist.msi","/passive","/qn","LicenseAccepted=1"
38+
rm wdk-redist.msi
3439
- name: Checkout bmputil
3540
uses: actions/checkout@v5
3641
with:

0 commit comments

Comments
 (0)