From 61bc93f955d2fdac339be9f04591bfd4f801563b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20S=C3=BC=C3=9Fenbach?= Date: Mon, 19 Aug 2024 12:31:21 +0200 Subject: [PATCH] Remove gcc-11 for builds on macos (#1942) --- .github/workflows/ci-macos.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 5e6d726..2d131f7 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -12,12 +12,8 @@ jobs: strategy: matrix: os: [macos-12, macos-13] - # g++-12 and g++13 fail on some very innocent code... excluding them for now - compiler: [clang++, g++-11] - exclude: - # g++-11 fails on macos-13 with some linker assertion... excluding it for now - - os: macos-13 - compiler: g++-11 + # gcc-12 and gcc-13 fail on some very innocent code... excluding them for now + compiler: [clang++] steps: - uses: actions/checkout@v4