We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55df351 commit a09aaf4Copy full SHA for a09aaf4
.github/workflows/ci.yml
@@ -112,6 +112,13 @@ jobs:
112
113
echo "C:\Program Files${{ endsWith(matrix.version, '-win32') && ' (x86)' || '' }}\MIT\Kerberos\bin;$PATH" >> $GITHUB_PATH
114
115
+ - name: get WinSDK info
116
+ if: startsWith(matrix.os, 'windows-')
117
+ shell: pwsh
118
+ run: |
119
+ python -m pip install setuptools
120
+ python -c "import setuptools.msvc as s; e = s.EnvironmentInfo('AMD64'); print(e.return_env())"
121
+
122
- name: Download gssapi sdist
123
uses: actions/download-artifact@v5
124
with:
0 commit comments