Skip to content

Commit

Permalink
updating workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
b-vanstraaten committed Apr 5, 2024
1 parent 1e291bc commit 731ea56
Showing 1 changed file with 28 additions and 2 deletions.
30 changes: 28 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ jobs:
name: wheels
path: dist

macos:
runs-on: macos-latest
macos14:
runs-on: macos-14
strategy:
matrix:
python-version: ['3.10', '3.11', '3.12']
Expand All @@ -85,6 +85,32 @@ jobs:
name: wheels
path: dist

macos13:
runs-on: macos-13
strategy:
matrix:
python-version: [ '3.10', '3.11', '3.12' ]
target: [ aarch64 ]
steps:
- name: Set C++ Standard Library
run: export CXXFLAGS="-stdlib=libc++"

- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Build wheels
uses: PyO3/maturin-action@v1
with:
target: ${{ matrix.target }}
args: --release --out dist --find-interpreter
sccache: 'true'
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

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

0 comments on commit 731ea56

Please sign in to comment.