Skip to content

Commit

Permalink
add 3.9 macos build step
Browse files Browse the repository at this point in the history
  • Loading branch information
Veli Eroglu committed Jul 18, 2024
1 parent a8cbced commit 40b4c8e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,32 @@ jobs:
name: wheels-macos-${{ matrix.platform.target }}
path: dist

macos-39:
runs-on: ${{ matrix.platform.runner }}
strategy:
matrix:
platform:
- runner: macos-latest
target: x86_64
- runner: macos-14
target: aarch64
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.platform.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels-macos-${{ matrix.platform.target }}
path: dist

sdist:
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 40b4c8e

Please sign in to comment.