From 6e5150a9635cee09e77a059073a8e3172359ccce Mon Sep 17 00:00:00 2001 From: Jakob Ruhe Date: Mon, 13 May 2024 15:29:07 +0200 Subject: [PATCH] CI fix: Use version 20.04 when building with clang for Ubuntu This fixes the problem that `clang-10` is not available for newer versions of Ubuntu. Of course we could upgrade `clang` as well, but let's restore the functionality as it was, and after that, we can introduce new changes. By using a fixed version we get a more controlled build environment. --- .github/workflows/ubuntu.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index d87b377..cc240f6 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -41,7 +41,7 @@ jobs: Clang: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 strategy: matrix: build_type: [Debug, RelWithDebInfo, MinSizeRel, Release]