From 89ffeab8747e7ea1b906783c9bbcaf887494d252 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thomas=20Wei=C3=9Fschuh?= Date: Fri, 22 Sep 2023 20:38:13 +0200 Subject: [PATCH] ci: also use GCC 13 for sanitizer builds MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Now that -Werror is not used anymore with -fsanitize the false-postives are not a problem anymore and we get the better runtime checks of newer sanitizers. Signed-off-by: Thomas Weißschuh --- .github/workflows/cibuild.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cibuild.yml b/.github/workflows/cibuild.yml index f6da622cf5..2d690bb0ff 100644 --- a/.github/workflows/cibuild.yml +++ b/.github/workflows/cibuild.yml @@ -28,7 +28,7 @@ jobs: matrix: env: # gcc-13 has false-positives with ubsan - - { COMPILER: "gcc", COMPILER_VERSION: "11", SANITIZE: "yes" } + - { COMPILER: "gcc", COMPILER_VERSION: "13", SANITIZE: "yes" } - { COMPILER: "gcc", COMPILER_VERSION: "13", SANITIZE: "no" } - { COMPILER: "clang", COMPILER_VERSION: "16", SANITIZE: "yes" } - { COMPILER: "clang", COMPILER_VERSION: "16", SANITIZE: "no" } -- 2.47.3