From dbefe674dce9d18a7913d3222a301917ed1ecea2 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Thu, 7 Apr 2022 17:11:36 +0200 Subject: [PATCH] dnsdist: Disable more features in the "least" CI test --- tasks.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index 49dccd727f..b67b5e540f 100644 --- a/tasks.py +++ b/tasks.py @@ -331,7 +331,11 @@ def ci_dnsdist_configure(c, features): -DDISABLE_WEB_CONFIG \ -DDISABLE_RULES_ALTERING_QUERIES \ -DDISABLE_ECS_ACTIONS \ - -DDISABLE_TOP_N_BINDINGS' + -DDISABLE_TOP_N_BINDINGS \ + -DDISABLE_OCSP_STAPLING \ + -DDISABLE_HASHED_CREDENTIALS \ + -DDISABLE_FALSE_SHARING_PADDING \ + -DDISABLE_NPN' sanitizers = ' '.join('--enable-'+x for x in os.getenv('SANITIZERS').split('+')) cflags = '-O1 -Werror=vla -Werror=shadow -Wformat=2 -Werror=format-security -Werror=string-plus-int' cxxflags = cflags + ' -Wp,-D_GLIBCXX_ASSERTIONS ' + additional_flags -- 2.47.2