From: Emil Velikov Date: Tue, 15 Oct 2024 12:52:07 +0000 (+0100) Subject: ci: disable sanitizers for ubuntu 22.04 X-Git-Tag: v34~232 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=01a48d2cdf214f6552f106365529eff713d9d159;p=thirdparty%2Fkmod.git ci: disable sanitizers for ubuntu 22.04 It seems that the meson shipped with Ubuntu 22.04 is too old (buggy?) to set the ASAN_OPTIONS and similar variables. Which means that we don't have an easy way to detect if the sanitizers are enabled in the upcoming test wrapper script. The alternative is to grab newer meson, either via pip or otherwise. Although considering we have decent coverage via the other distributions it doesn't seem worth the hassle. Signed-off-by: Emil Velikov Link: https://github.com/kmod-project/kmod/pull/179 Signed-off-by: Lucas De Marchi --- diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 276e5eb4..5e3804aa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,7 +25,6 @@ jobs: build: ['meson', 'autotools'] container: - name: 'ubuntu:22.04' - meson_setup: '-D b_sanitize=address,undefined' multilib: 'true' - name: 'ubuntu:24.04' meson_setup: '-D b_sanitize=address,undefined'