Skip to content

Commit

Permalink
Drop macos 12 in CI (deprecated)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliaskosunen committed Oct 28, 2024
1 parent 8499109 commit 2d62f8d
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,30 +49,26 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ 14, 12 ]
os: [ 14 ]
cxx: [ brew-clang++, clang++, g++-14, g++-13, g++-12 ]
std: [ 17 ]

include:
# brew-clang++ with later standards on macos 14
- os: 14
cxx: brew-clang++
std: 20
- os: 14
cxx: brew-clang++
std: 23

exclude:
# macos 14 + gcc ICEs in the linker
- os: 14
cxx: g++-13
- os: 14
cxx: g++-12
- os: 14
cxx: g++-11

# Fails at CMake-configure time inside Google benchmark
- os: 12
cxx: g++-13
# macos 15 with built-in clang++ and brew-clang++
- os: 15
cxx: clang++
std: 17
- os: 15
cxx: brew-clang++
std: 17

env:
CXX: ${{ matrix.cxx }}
Expand Down

0 comments on commit 2d62f8d

Please sign in to comment.