Skip to content

Commit eaf7e21

Browse files
Add Windows Driver Kit installation to CI workflows
Both build-and-sign-sequential.yml and ci-validation.yml now install the Windows Driver Kit using Chocolatey to provide IddCx headers required for the build process.
1 parent c622700 commit eaf7e21

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

.github/workflows/build-and-sign-sequential.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,13 @@ jobs:
4040
- name: Setup MSBuild
4141
uses: microsoft/setup-msbuild@v2
4242

43+
- name: Install Windows Driver Kit (for IddCx headers)
44+
shell: pwsh
45+
run: |
46+
$ErrorActionPreference = "Stop"
47+
choco install windowsdriverkit11 -y --no-progress
48+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
49+
4350
- name: Detect Windows SDK (windows.h)
4451
shell: pwsh
4552
run: |

.github/workflows/ci-validation.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ jobs:
2727
- name: Setup MSBuild
2828
uses: microsoft/setup-msbuild@v2
2929

30+
- name: Install Windows Driver Kit (for IddCx headers)
31+
shell: pwsh
32+
run: |
33+
$ErrorActionPreference = "Stop"
34+
choco install windowsdriverkit11 -y --no-progress
35+
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
36+
3037
- name: Detect Windows SDK (windows.h)
3138
shell: pwsh
3239
run: |

0 commit comments

Comments
 (0)