Skip to content

Commit

Permalink
Pin MKL macOS CI to macOS 13 to get x86 runners
Browse files Browse the repository at this point in the history
  • Loading branch information
imciner2 committed May 2, 2024
1 parent 0aeebf1 commit 53ea974
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/algebra-mkl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
matrix:
# Specify the exact Windows image because the CMake generator in the CI breaks when the image
# updates (since Visual Studio is also updated at the same time).
os: [ubuntu-latest, macos-latest, windows-2022]
# Stick with macos-13 because the macOS 14 runners are M1-based, and therefore MKL isn't available
# (macOS 13 is the last release to support x86 processors)
os: [ubuntu-latest, macos-13, windows-2022]
python-version: [3.9]
long: ['ON', 'OFF']

Expand All @@ -30,7 +32,7 @@ jobs:
- os: ubuntu-latest
cmake_generator: "Unix Makefiles"
test_target: "test"
- os: macos-latest
- os: macos-13
cmake_generator: "Unix Makefiles"
test_target: "test"
- os: windows-2022
Expand Down

0 comments on commit 53ea974

Please sign in to comment.