From 83b289da7136387381b18ef0f49c5f331bd4d60a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20S=C3=BC=C3=9Fenbach?= Date: Tue, 4 Jun 2024 11:51:53 +0200 Subject: [PATCH] Remove some failing compilers (macos, ubuntu) from workflow. (#1886) --- .github/workflows/ci-macos.yml | 8 +++----- .github/workflows/ci-ubuntu.yml | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml index 45fef5d..5e6d726 100644 --- a/.github/workflows/ci-macos.yml +++ b/.github/workflows/ci-macos.yml @@ -12,14 +12,12 @@ jobs: strategy: matrix: os: [macos-12, macos-13] - # g++-12 fails on some very innocent code... excluding it for now - compiler: [clang++, g++-11, g++-13] + # g++-12 and g++13 fail on some very innocent code... excluding them for now + compiler: [clang++, g++-11] exclude: - # g++-11 and g++-13 fails on macos-13 with some linker assertion... excluing it for now + # g++-11 fails on macos-13 with some linker assertion... excluding it for now - os: macos-13 compiler: g++-11 - - os: macos-13 - compiler: g++-13 steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/ci-ubuntu.yml b/.github/workflows/ci-ubuntu.yml index 5764f6d..aeb239e 100644 --- a/.github/workflows/ci-ubuntu.yml +++ b/.github/workflows/ci-ubuntu.yml @@ -16,7 +16,7 @@ jobs: strategy: matrix: # g++-12 fails on some very innocent code... excluding it for now - compiler: [clang++-13, clang++-14, clang++-15, g++-9, g++-10, g++-11, g++-13] + compiler: [clang++-13, clang++-14, clang++-15, g++-10, g++-11] steps: - uses: actions/checkout@v4