Skip to content

Commit

Permalink
ci: Test building of Windows arm64 wheel in CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Feb 27, 2024
1 parent f786855 commit a57b84f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,26 @@ jobs:
run: >-
python -m pytest -ra --cov --cov-report=xml --cov-report=term
--durations=20
checks-cibw:
name: Check Python ${{ matrix.python-version }} on ${{ matrix.runs-on }} (${{ matrix.arch }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
python-version: cp312
arch: "ARM64"
test-skip: "*-win_arm64"

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: pypa/cibuildwheel@v2.16.5
env:
CIBW_BUILD: "${{ matrix.python-version }}-*"
CIBW_ARCHS: "${{ matrix.arch }}"
CIBW_TEST_SKIP: "${{ matrix.test-skip }}"

0 comments on commit a57b84f

Please sign in to comment.