From 410db6a97fc2c040e05b88ba68f47bedd529a673 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..2d947509d 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