Skip to content

Commit

Permalink
chore: update macos runners list (#43)
Browse files Browse the repository at this point in the history
* chore: update macos runners list

* ci: for macos-13 get macos-latest artifacts
  • Loading branch information
k4black authored Apr 24, 2024
1 parent 77944f3 commit da5f185
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,16 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, macos-latest, macos-14, windows-latest] # at the moment macos-14 is exclusive M1 chip
# macos-14 not supporting 3.8 and 3.9
exclude:
- python-version: 3.8
os: macos-14
- python-version: 3.9
os: macos-14
os: [ubuntu-latest, macos-latest, macos-13, windows-latest] # at the moment macos-latest=macos-14 is exclusive M1 chip, macos-13 is intel
fail-fast: false
name: Test wheel on ${{ matrix.os }} and Python ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
# for macos-14 get macos-latest artifacts
name: wheels-${{ matrix.os == 'macos-14' && 'macos-latest' || matrix.os }}
# for macos-13 get macos-latest artifacts
name: wheels-${{ matrix.os == 'macos-13' && 'macos-latest' || matrix.os }}
path: dist
- name: Show dist files
run: ls -lah ./dist
Expand Down

0 comments on commit da5f185

Please sign in to comment.