From 5713243d075be0add1dec594c19caeaa48fac4f4 Mon Sep 17 00:00:00 2001 From: Yves Delley Date: Tue, 12 Nov 2024 21:41:09 +0100 Subject: [PATCH] fix clang 16 --- .github/generate-job-matrix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/generate-job-matrix.py b/.github/generate-job-matrix.py index ec819ede..b30ea573 100644 --- a/.github/generate-job-matrix.py +++ b/.github/generate-job-matrix.py @@ -41,7 +41,7 @@ def make_clang_config( ) match platform: case "x86-64": - ret.os = "ubuntu-24.04" + ret.os = "ubuntu-22.04" if version < 17 else "ubuntu-24.04" case "arm64": ret.os = "macos-14" pfx = f"/opt/homebrew/opt/llvm@{version}/bin/"