Skip to content

Commit 645edd6

Browse files
CI : Update to Windows SDK 10.0.20348.0
We take the same approach as gafferhq/gaffer to install the required SDK version as it's no longer provided by the runner.
1 parent 3aeebb6 commit 645edd6

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/main.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,16 @@ jobs:
8484

8585
- uses: actions/checkout@v4
8686

87+
- name: Install Windows SDK
88+
run: |
89+
curl.exe -L --output winsdksetup.exe --url https://download.microsoft.com/download/9/7/9/97982c1d-d687-41be-9dd3-6d01e52ceb68/windowssdk/winsdksetup.exe
90+
Start-Process ./winsdksetup.exe -ArgumentList "/Features OptionId.DesktopCPPx64 /Quiet /NoRestart" -NoNewWindow -Wait
91+
shell: pwsh
92+
if: runner.os == 'Windows'
93+
8794
- uses: ilammy/[email protected]
8895
with:
89-
sdk: 10.0.17763.0
96+
sdk: 10.0.20348.0
9097

9198
- name: Install toolchain (Windows)
9299
run: |

0 commit comments

Comments
 (0)