From: Thomas Weißschuh Date: Fri, 22 Sep 2023 18:38:13 +0000 (+0200) Subject: ci: also use GCC 13 for sanitizer builds X-Git-Tag: v2.40-rc1~232^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=89ffeab8747e7ea1b906783c9bbcaf887494d252;p=thirdparty%2Futil-linux.git ci: also use GCC 13 for sanitizer builds 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 --- 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" }