From 52e2cb4d56a1c7786adbfc5297a3ef7616acfe6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Wed, 26 Nov 2025 11:45:03 +0100 Subject: [PATCH] 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. --- .gitlab-ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ddb03c1f32..29b3f627f8 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"