Skip to content

Commit 3153eee

Browse files
install windows sdk 10.0.18362.0
1 parent a579692 commit 3153eee

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/pr.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,12 @@ jobs:
158158
uses: actions/[email protected]
159159
with:
160160
node-version: 20
161+
- name: Install 10.0.18362.0 Windows SDK
162+
run: |
163+
$sdkVersion = '10.0.18362.0'
164+
$installerUrl = "https://go.microsoft.com/fwlink/p/?linkid=2120843&clcid=0x409&Culture=en-US&country=US&Consent=0&callingAppTelemetryId=0&passive=false&dest=https://go.microsoft.com/fwlink/?linkid=2120843"
165+
Invoke-WebRequest -Uri $installerUrl -OutFile 'winsdksetup.exe'
166+
Start-Process -FilePath 'winsdksetup.exe' -ArgumentList "/features OptionId.WindowsDesktopSoftwareDevelopmentKit OptionId.WindowsSoftwareDevelopmentKit, /quiet" -Wait
161167
- name: Install watchman
162168
run: choco install watchman
163169
working-directory: ./Apps/BRNPlayground

0 commit comments

Comments
 (0)