From a54ff1fc3bdcb08cc4436114e783321753fd6438 Mon Sep 17 00:00:00 2001 From: asuessenbach Date: Wed, 21 Aug 2024 11:59:08 +0200 Subject: [PATCH] Add g++-14 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 4b495c0bf..46e7ae3fc 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-13 fails on some very innocent code... excluding them for now - compiler: [clang++, g++-12] + # g++-13 fails on macos-12 with some error in stdio.h ! + compiler: [clang++, g++-12, g++-14] steps: - uses: actions/checkout@v4