Skip to content

Commit

Permalink
Just test on macos-latest
Browse files Browse the repository at this point in the history
  • Loading branch information
pgleeson committed May 1, 2024
1 parent a7ab3f3 commit 9a92bf3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
build:

runs-on: macos-latest
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci_versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: [ubuntu-latest, macos-latest, macos-14]
runs-on: [ubuntu-latest, macos-latest]
exclude:
- runs-on: macos-14
- runs-on: macos-latest
python-version: "3.9"

steps:
Expand All @@ -28,10 +28,10 @@ jobs:
python-version: ${{ matrix.python-version }}


- name: Install HDF5 for pytables on macos-14
- name: Install HDF5 for pytables on macos-latest
run: |
# if [[ ${{ matrix.python-version }} == "3.11" ]] || [[ ${{ matrix.python-version }} == "3.12" ]]; then
if [[ ${{ matrix.runs-on }} == "macos-14" ]]; then brew install hdf5 ; fi;
if [[ ${{ matrix.runs-on }} == "macos-latest" ]]; then brew install hdf5 ; fi;
#fi;
Expand Down

0 comments on commit 9a92bf3

Please sign in to comment.