Skip to content

Commit

Permalink
Only build win_amd64 (instead of all windows wheels)
Browse files Browse the repository at this point in the history
Summary: The win32 builds are failing tests and crashing the process with 0xC0000374 whenever child threads exit and there are callbacks to run through `FlsAlloc`. I don't entirely know why.

Reviewed By: SonicField

Differential Revision: D68226404

fbshipit-source-id: 5dbde77a623b116142325c59a9b722ed2a1d5046
  • Loading branch information
Kevin Newton authored and facebook-github-bot committed Jan 16, 2025
1 parent d4be4f4 commit 3b8dda2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ jobs:
CIBW_ENABLE: "cpython-freethreading"
- wheel: "windows-3.13"
os: windows-latest
CIBW_BUILD: "cp313-*"
CIBW_BUILD: "cp313-win_amd64"
- wheel: "windows-3.13t"
os: windows-latest
CIBW_BUILD: "cp313t-*"
CIBW_BUILD: "cp313t-win_amd64"
CIBW_ENABLE: "cpython-freethreading"
- wheel: "macos-3.13"
os: macos-latest
Expand Down

0 comments on commit 3b8dda2

Please sign in to comment.