Skip to content

Commit

Permalink
Build wheels for ARM arch for python>=3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Yngve S. Kristiansen authored and yngve-sk committed Dec 15, 2023
1 parent 38348cd commit e4230ff
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/build-wheels-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,16 @@ on:
inputs:
python-version:
type: string
os:
type: string
jobs:

build-wheels:
timeout-minutes: 45
strategy:
fail-fast: false

runs-on: macos-latest
runs-on: ${{ inputs.os }}

steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,17 @@ jobs:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11' ]
os: [ 'macos-latest', 'macos-latest-xlarge' ]
exclude: # m1 runner macos-latest-xlarge does not have python < 3.10
- os: macos-latest-xlarge
python-version: '3.8'
- os: macos-latest-xlarge
python-version: '3.9'

uses: ./.github/workflows/build-wheels-macos.yml
with:
python-version: ${{ matrix.python-version }}
os: ${{ matrix.os }}

test-linux:
needs: [build-linux]
Expand Down

0 comments on commit e4230ff

Please sign in to comment.