From: Alexander Mikhalitsyn Date: Wed, 26 Jun 2024 17:47:31 +0000 (+0200) Subject: github: exclude clang & ubuntu-24.04 combination X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F4453%2Fhead;p=thirdparty%2Flxc.git 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 --- 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