Skip to content

Commit

Permalink
Avoid osx-arm64 macos-14 runners in CI (#149)
Browse files Browse the repository at this point in the history
* Avoid osx-arm64 macos-14 runners in CI

* remove unecessary exclude
  • Loading branch information
IAlibay authored Apr 27, 2024
1 parent 6b159b6 commit f8fa9b0
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
"-DDISTOPIA_MANUAL_SELECT_SIMD=ON -DDISTOPIA_USE_AVX=ON -DDISTOPIA_BUILD_TEST=ON",
"-DDISTOPIA_MANUAL_SELECT_SIMD=ON -DDISTOPIA_USE_AVX2=ON -DDISTOPIA_BUILD_TEST=ON",
"-DDISTOPIA_DISPATCH=ON -DDISTOPIA_DISPATCH_MANUAL=ON -DDISTOPIA_USE_SSE3=ON -DDISTOPIA_USE_SSE4_1=ON -DDISTOPIA_USE_AVX=ON -DDISTOPIA_BUILD_TEST=ON"]
os: [ubuntu-latest, macos-latest, windows-latest]
os: [ubuntu-latest, macos-13, windows-latest]
include:
- os: macos-latest
- os: macos-13
cxx_compiler: "clang++"
c_compiler: "clang"
- os: ubuntu-latest
Expand All @@ -51,10 +51,6 @@ jobs:
- os: windows-latest
cxx_compiler: "cl"
c_compiler: "cl"
exclude:
# excludes AVX2 on macOS as the VM doesn't seem to support some AVX2 instructions.
- os: macos-latest
instruction_set_flag: "-DDISTOPIA_MANUAL_SELECT_SIMD=ON -DDISTOPIA_USE_AVX2=ON -DDISTOPIA_BUILD_TEST=ON"

steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -90,7 +86,7 @@ jobs:
fail-fast: false
matrix:
# for now windows pip install builds seem to fail for some reason
os: [ubuntu-latest, macos-latest,]
os: [ubuntu-latest, macos-13,]
python: ["3.9", "3.10", "3.11", "3.12"]

steps:
Expand Down

0 comments on commit f8fa9b0

Please sign in to comment.