Skip to content

Commit

Permalink
Don't run macOS tests with EDM-based workflows (#332)
Browse files Browse the repository at this point in the history
This PR removes macOS tests for the EDM-based workflows: the EDM builds
of NumPy use the AVX2 instruction set, and as
a result are incompatible with the GitHub Actions runners on macOS.
  • Loading branch information
mdickinson committed May 2, 2023
1 parent b58547e commit f18497a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ets-from-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
test-with-edm:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, windows-latest]
runtime: ['3.8']

runs-on: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-with-edm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
test-with-edm:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
os: ['ubuntu-latest', 'windows-latest']
runtime: ['3.6', '3.8']

runs-on: ${{ matrix.os }}
Expand Down

0 comments on commit f18497a

Please sign in to comment.