From 13f8b7fa489e1922d93b0d8cc82d03644d8f74f9 Mon Sep 17 00:00:00 2001 From: Putro Date: Sat, 28 Oct 2023 01:49:24 +0200 Subject: [PATCH] [CI] Exclude the broken clang-15+cpp20 build while it's broken --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index bac3f87f99f..eb3a2056a37 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -94,6 +94,9 @@ jobs: exclude: - compiler: clang++-7 cppVersion: 20 + # This is a workaround temporarily until we can get the clang-15 build working on cpp20 + - compiler: clang++-15 + cppVersion: 20 steps: - uses: actions/checkout@v3 @@ -174,6 +177,9 @@ jobs: cppVersion: 20 - compiler: gcc-7 cppVersion: 20 + # This is a workaround temporarily until we can get the clang-15 build working on cpp20 + - compiler: clang++-15 + cppVersion: 20 steps: - uses: actions/cache@v3