Skip to content

ci: update Windows build workflow to enable freethreading and ARM64 a… #3

ci: update Windows build workflow to enable freethreading and ARM64 a…

ci: update Windows build workflow to enable freethreading and ARM64 a… #3

Workflow file for this run

name: Test windows build
on:
push:
workflow_dispatch:
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: [windows-latest]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Build wheels
uses: pypa/cibuildwheel@v3.4.0
env:
CIBW_TEST_SKIP: "*"
CIBW_ENABLE: cpython-freethreading
CIBW_BUILD: cp314t-win_arm64
CIBW_ARCHS_WINDOWS: ARM64