From 1069a086a610502ba4103cef4c2562c3775cbfe0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20S=C3=BC=C3=9Fenbach?= Date: Wed, 21 Aug 2024 18:06:26 +0200 Subject: [PATCH] Add g++-14 to MacOS workflow (#1948) --- .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 4b495c0..2d94750 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 and macos-13 with some error in stdio.h ! + compiler: [clang++, g++-12, g++-14] steps: - uses: actions/checkout@v4