Skip to content
3 changes: 3 additions & 0 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,13 +123,16 @@ jobs:
os:
- ubuntu
- windows
- windows-11-arm
- macos
tag:
- ''
- 'musllinux'
exclude:
- os: windows
tag: 'musllinux'
- os: windows-11-arm
tag: 'musllinux'
- os: macos
tag: 'musllinux'
- os: ubuntu
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/reusable-build-wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ jobs:
build-wheel:
name: >-
Build ${{ inputs.tag }} wheels on ${{ inputs.os }} ${{ inputs.qemu }}
runs-on: ${{ inputs.os }}-latest
runs-on: ${{
inputs.os == 'windows-11-arm' && inputs.os ||
format('{0}-latest', inputs.os)
}}
timeout-minutes: ${{ inputs.qemu && 120 || 15 }}
steps:
- name: Compute GHA artifact name ending
Expand Down
5 changes: 5 additions & 0 deletions CHANGES/1167.contrib.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Builds have been added for arm64 Windows
wheels and the ``reusable-build-wheel.yml``
template has been modified to allow for
an os value (``windows-11-arm``) which
does not end with the ``-latest`` postfix.
Loading