From 4892749ef4367752403a5e7fd5fd870eab191e43 Mon Sep 17 00:00:00 2001 From: Alexander Mikhalitsyn Date: Wed, 26 Jun 2024 19:47:31 +0200 Subject: [PATCH] github: exclude clang & ubuntu-24.04 combination Temporary workaround for: https://bugs.launchpad.net/ubuntu/+source/llvm-toolchain-18/+bug/2064187 Signed-off-by: Alexander Mikhalitsyn --- .github/workflows/build.yml | 4 ++++ .github/workflows/sanitizers.yml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1f7062eb7..f5a3ccf00 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,10 @@ jobs: os: - ubuntu-22.04 - ubuntu-24.04 + # temporary workaround for https://bugs.launchpad.net/ubuntu/+source/llvm-toolchain-18/+bug/2064187 + exclude: + - compiler: clang + os: ubuntu-24.04 runs-on: ${{ matrix.os }} steps: - name: Checkout code diff --git a/.github/workflows/sanitizers.yml b/.github/workflows/sanitizers.yml index 651b1c469..1e607f2d9 100644 --- a/.github/workflows/sanitizers.yml +++ b/.github/workflows/sanitizers.yml @@ -13,7 +13,7 @@ jobs: compiler: - gcc - clang - runs-on: ubuntu-24.04 + runs-on: ubuntu-22.04 steps: - name: Checkout code uses: actions/checkout@v4 -- 2.47.2