From: Ondřej Surý Date: Wed, 26 Nov 2025 10:45:03 +0000 (+0100) Subject: Enable junk filling via jemalloc option in the CI X-Git-Tag: v9.21.16~26^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52e2cb4d56a1c7786adbfc5297a3ef7616acfe6d;p=thirdparty%2Fbind9.git Enable junk filling via jemalloc option in the CI Since the filling memory with junk patterns have been removed from ISC memory context in favor of jemalloc opt.junk option, enable the jemalloc behaviour by default in the GitLab CI. --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ddb03c1f322..29b3f627f89 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -4,6 +4,9 @@ variables: # Locale settings do not affect the build, but might affect tests. LC_ALL: C + # enable junk filling via jemalloc option + MALLOC_CONF: "junk:true" + # automated commits will inherit identification from pipeline trigger GIT_AUTHOR_NAME: "$GITLAB_USER_NAME (GitLab job $CI_JOB_ID)" GIT_AUTHOR_EMAIL: "$GITLAB_USER_EMAIL"