We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 96cfc75 + 6e629ad commit d0b471dCopy full SHA for d0b471d
.github/workflows/ci.yml
@@ -179,6 +179,17 @@ jobs:
179
- name: show the current environment
180
run: src/ci/scripts/dump-environment.sh
181
182
+ - name: Remove Windows SDK 10.0.26100.0
183
+ shell: powershell
184
+ if: ${{ matrix.name == 'i686-msvc-1' || matrix.name == 'i686-msvc-2' || matrix.name == 'dist-i686-msvc' }}
185
+ run: |
186
+ $kits = (Get-ItemProperty -path 'HKLM:\SOFTWARE\Microsoft\Windows Kits\Installed Roots').KitsRoot10
187
+ $sdk_version = "10.0.26100.0"
188
+
189
+ foreach ($kind in 'Bin', 'Lib', 'Include') {
190
+ Remove-Item -Force -Recurse $kits\$kind\$sdk_version
191
+ }
192
193
- name: run the build
194
# Redirect stderr to stdout to avoid reordering the two streams in the GHA logs.
195
run: src/ci/scripts/run-build-from-ci.sh 2>&1
0 commit comments