Skip to content

Commit

Permalink
update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
roeger committed Dec 17, 2024
1 parent 7690081 commit 5b748c5
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
# macos-13 is an intel runner, macos-14 is apple silicon
os: [ubuntu-latest, windows-latest, macos-13, macos-14]
# macos-13 is an intel runner
os: [ubuntu-latest, windows-latest, macos-13]

steps:
- uses: actions/checkout@v4
Expand All @@ -24,7 +24,7 @@ jobs:

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

# build-linux:
Expand Down Expand Up @@ -109,21 +109,20 @@ jobs:
strategy:
matrix:
version:
- {os: ubuntu-20.04, python: '3.8'}
- {os: ubuntu-22.04, python: '3.10'}
- {os: ubuntu-latest, python: '3.10'}
- {os: macOS-13, python: '3.10'}
steps:
- name: Clone repository
uses: actions/checkout@v4

- uses: actions/download-artifact@master
with:
name: linux-wheel
name: cibw-wheels-ubuntu-latest
path: dist

- uses: actions/download-artifact@master
with:
name: mac-wheel
name: cibw-wheels-macos-13
path: dist

- name: Install Python
Expand Down Expand Up @@ -185,17 +184,17 @@ jobs:
steps:
- uses: actions/download-artifact@master
with:
name: linux-wheel
name: cibw-wheels-ubuntu-latest
path: dist

- uses: actions/download-artifact@master
with:
name: windows-wheel
name: cibw-wheels-windows-latest
path: dist

- uses: actions/download-artifact@master
with:
name: mac-wheel
name: cibw-wheels-macos-13
path: dist

- run: ls dist
Expand Down

0 comments on commit 5b748c5

Please sign in to comment.