Remove unsupported macOS 11 from CI (#1410)

This commit is contained in:
Sylvie
2024-06-17 14:30:57 -04:00
committed by GitHub
parent b3c94b5b87
commit 9e1898238d

View File

@@ -7,13 +7,11 @@ jobs:
unix: unix:
strategy: strategy:
matrix: matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] os: [ubuntu-20.04, ubuntu-22.04, macos-12]
cxx: [g++, clang++] cxx: [g++, clang++]
buildsys: [make, cmake] buildsys: [make, cmake]
exclude: exclude:
# Don't use `g++` on macOS; it's just an alias to `clang++`. # Don't use `g++` on macOS; it's just an alias to `clang++`.
- os: macos-11
cxx: g++
- os: macos-12 - os: macos-12
cxx: g++ cxx: g++
fail-fast: false fail-fast: false