From e52f64229a4f60a2c1463611989c2b55471f36bb Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sun, 5 Mar 2023 16:47:48 +0100 Subject: [PATCH] cirrus: use Clang 11 instead of 10 on Linux This fixes the CI failure where clang could not find . Removing the include would not be enough, there are some other failures. Debian Stable ships Clang 11 so this seems accessible enough. --- .cirrus.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cirrus.yml b/.cirrus.yml index 27930b77..2c50dda9 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -22,7 +22,7 @@ linux_task: matrix: - name: linux_clang container: - image: silkeh/clang:10 + image: silkeh/clang:11 env: CXX: clang++ - name: linux_gcc