From 9e1898238d3b621c1fa58e65d698df9d02d87075 Mon Sep 17 00:00:00 2001 From: Sylvie <35663410+Rangi42@users.noreply.github.com> Date: Mon, 17 Jun 2024 14:30:57 -0400 Subject: [PATCH] Remove unsupported macOS 11 from CI (#1410) --- .github/workflows/testing.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index ed72729e..48971b16 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -7,13 +7,11 @@ jobs: unix: strategy: matrix: - os: [ubuntu-20.04, ubuntu-22.04, macos-11, macos-12] + os: [ubuntu-20.04, ubuntu-22.04, macos-12] cxx: [g++, clang++] buildsys: [make, cmake] exclude: # Don't use `g++` on macOS; it's just an alias to `clang++`. - - os: macos-11 - cxx: g++ - os: macos-12 cxx: g++ fail-fast: false