Skip to content

Commit af8c026

Browse files
committed
ci: Test building of Windows arm64 wheel in CI workflow
1 parent f786855 commit af8c026

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,29 @@ jobs:
6464
run: >-
6565
python -m pytest -ra --cov --cov-report=xml --cov-report=term
6666
--durations=20
67+
68+
checks-cibw:
69+
name: >
70+
Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }} (${{
71+
matrix.arch }})
72+
runs-on: ${{ matrix.runs-on }}
73+
needs: [pre-commit]
74+
strategy:
75+
fail-fast: false
76+
matrix:
77+
include:
78+
- runs-on: windows-latest
79+
python-version: cp312
80+
arch: "ARM64"
81+
test-skip: "*-win_arm64"
82+
83+
steps:
84+
- uses: actions/checkout@v4
85+
with:
86+
fetch-depth: 0
87+
88+
- uses: pypa/[email protected]
89+
env:
90+
CIBW_BUILD: "${{ matrix.python-version }}-*"
91+
CIBW_ARCHS: "${{ matrix.arch }}"
92+
CIBW_TEST_SKIP: "${{ matrix.test-skip }}"

0 commit comments

Comments
 (0)