From 37fed4f3d87b7b0228ddedcdd862072f1fe3d8f9 Mon Sep 17 00:00:00 2001 From: asuessenbach Date: Tue, 20 Aug 2024 11:38:53 +0200 Subject: [PATCH] Add g++-12 to MacOS workflow. --- .github/workflows/ci-macos.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 2d131f768..4b495c0bf 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -12,8 +12,8 @@ jobs: strategy: matrix: os: [macos-12, macos-13] - # gcc-12 and gcc-13 fail on some very innocent code... excluding them for now - compiler: [clang++] + # gcc-13 fails on some very innocent code... excluding them for now + compiler: [clang++, g++-12] steps: - uses: actions/checkout@v4