Skip to content

Commit 1fb51d5

Browse files
committed
Downgrade Win SDK to 10.0.22621.0
1 parent 9bdf3f2 commit 1fb51d5

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/ci.yml

+15
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,21 @@ jobs:
174174
- name: ensure the stable version number is correct
175175
run: src/ci/scripts/verify-stable-version-number.sh
176176

177+
# Temporary fix to unblock CI
178+
# We revert to an older Windows SDK for 32-bit Windows MSVC builds.
179+
# See issue https://github.com/rust-lang/rust/issues/137733 for more details.
180+
- name: downgrade Windows SDK
181+
shell: pwsh
182+
if: ${{ matrix.name == 'i686-msvc-1' || matrix.name == 'i686-msvc-2' || matrix.name == 'dist-i686-msvc' }}
183+
run: |
184+
$sdk_dir = (Get-ItemProperty -path 'HKLM:\SOFTWARE\Microsoft\Windows Kits\Installed Roots').KitsRoot10
185+
$sdk_version = "10.0.22621.0"
186+
187+
# Override the SDK used by cc-rs by setting the SDK environment variables
188+
"WindowsSdkDir=$sdk_dir" >> $env:GITHUB_ENV
189+
"WindowsSDKVersion=$sdk_version\" >> $env:GITHUB_ENV
190+
191+
177192
# Show the environment just before we run the build
178193
# This makes it easier to diagnose problems with the above install scripts.
179194
- name: show the current environment

0 commit comments

Comments
 (0)