Skip to content

Add windows arm64 support #678

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/actionlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---

# Workaround since actionlint does not include windows-11-arm support yet
# https://github.com/rhysd/actionlint/issues/533
self-hosted-runner:
labels:
- windows-11-arm

...
13 changes: 11 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,13 +137,16 @@ jobs:
runner-vm-os:
- ubuntu-latest
- windows-latest
- windows-11-arm
- macos-latest
tag:
- ''
- 'musllinux'
exclude:
- runner-vm-os: windows-latest
tag: 'musllinux'
- runner-vm-os: windows-11-arm
tag: 'musllinux'
- runner-vm-os: macos-latest
tag: 'musllinux'
- runner-vm-os: ubuntu-latest
Expand Down Expand Up @@ -184,8 +187,7 @@ jobs:
&& '*_i686
*-macosx_universal2
*-musllinux_*
*-win32
*_arm64'
*-win32'
|| (matrix.tag == 'musllinux') && '*-manylinux_*'
|| '*-musllinux_*'
}}
Expand Down Expand Up @@ -213,12 +215,19 @@ jobs:
- ubuntu-latest
- macos-latest
- windows-latest
- windows-11-arm
experimental: [false]
exclude:
- os: macos-latest
no-extensions: Y
- os: windows-latest
no-extensions: Y
- os: windows-11-arm
no-extensions: Y
- os: windows-11-arm
pyver: 3.10 # not supported by setup-python action
- os: windows-11-arm
pyver: 3.9 # not supported by setup-python action
include:
- pyver: pypy-3.10
no-extensions: Y
Expand Down
2 changes: 2 additions & 0 deletions CHANGES/677.contrib.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Builds and tests have been added to
``ci-cd.yml`` for arm64 Windows wheels.