Skip to content

Commit

Permalink
install windows sdk 10.0.18362.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CedricGuillemet committed Oct 18, 2024
1 parent a579692 commit 3153eee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,12 @@ jobs:
uses: actions/[email protected]
with:
node-version: 20
- name: Install 10.0.18362.0 Windows SDK
run: |
$sdkVersion = '10.0.18362.0'
$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"
Invoke-WebRequest -Uri $installerUrl -OutFile 'winsdksetup.exe'
Start-Process -FilePath 'winsdksetup.exe' -ArgumentList "/features OptionId.WindowsDesktopSoftwareDevelopmentKit OptionId.WindowsSoftwareDevelopmentKit, /quiet" -Wait
- name: Install watchman
run: choco install watchman
working-directory: ./Apps/BRNPlayground
Expand Down

0 comments on commit 3153eee

Please sign in to comment.