Skip to content

Commit

Permalink
building M1 wheels in CI #3
Browse files Browse the repository at this point in the history
  • Loading branch information
behrisch committed Feb 19, 2024
1 parent 411272e commit 5ea519e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/wheel-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14]
python_version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
runs-on: macos-12
runs-on: ${{ matrix.os }}
env:
CCACHE_COMPILERTYPE: clang

Expand All @@ -51,7 +52,7 @@ jobs:
if: github.event_name != 'schedule'
uses: hendrikmuhs/ccache-action@v1.2
with:
key: ${{ github.job }}-${{ matrix.python_version }}
key: ${{ github.job }}-${{ matrix.python_version }}-${{ matrix.os }}

- name: Building SUMO / Libsumo wheels
run: |
Expand All @@ -68,7 +69,7 @@ jobs:
- name: Uploading artifacts (Python wheels)
uses: actions/upload-artifact@v4
with:
name: python-${{ matrix.python_version }}-wheels
name: python-${{ matrix.python_version }}-${{ matrix.os }}-wheels
path: dist

###################
Expand All @@ -79,7 +80,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-13]
os: [macos-12, macos-13, macos-14]
python_version: [3.7, 3.8, 3.9, '3.10', 3.11, 3.12]
runs-on: ${{ matrix.os }}

Expand Down

0 comments on commit 5ea519e

Please sign in to comment.