Skip to content

Commit

Permalink
👷 Update CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
amarrerod committed Sep 9, 2024
1 parent b88386a commit 1e2fa56
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, macos-14]
os: [ubuntu-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v4
Expand Down
26 changes: 15 additions & 11 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,21 @@ permissions:
contents: read

jobs:
build_wheels:
name: Build wheels on Linux Systems
runs-on: ubuntu-latest
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, macos-13, macos-14]

steps:
- uses: actions/checkout@v4
steps:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v2.18.1
- name: Build wheels
uses: pypa/cibuildwheel@v2.20.0

- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-ubuntu-latest
path: ./wheelhouse/*.whl
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl

0 comments on commit 1e2fa56

Please sign in to comment.