Commit 2c89220
committed
fix(ci): setup MSVC for x86 to fix dependency builds
The x86 (32-bit) build job was failing at 'Install dependencies'
(uv sync) because packages like pyyaml and greenlet lack cp314-win32
wheels for Python 3.14 and must be built from sdist. Building on
Windows requires the 32-bit MSVC toolchain, which was not activated.
Added:
- name: Setup MSVC for x86
if: matrix.arch == 'x86'
uses: ilammy/msvc-dev-cmd@v1
with:
arch: x86
This complements the cryptography>=46,<49 pin (to avoid builds
where possible) and allows the x86 matrix entry to succeed for
dependabot PRs like #1260 (google-genai) and similar.1 parent dab988e commit 2c89220
1 file changed
Lines changed: 5 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
47 | 52 | | |
48 | 53 | | |
49 | 54 | | |
| |||
0 commit comments