This is an automated email from the git hooks/post-receive script. guillem pushed a commit to branch main in repository dpkg.
View the commit online: https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=90cadbc8698fc7e3ca0cf018a2534c8874ef7376 commit 90cadbc8698fc7e3ca0cf018a2534c8874ef7376 (HEAD -> main) Author: Guillem Jover <[email protected]> AuthorDate: Sun Jul 9 02:44:39 2023 +0200 build: Do not enable the sanitizer for the functional test suite The way the code is currently structured, it is not freeing memory on code paths leading to an ohshit() or ohshite(). But those might continue elsewhere if an error context has been configured to use setjmp(). We will need to fix these instances before this can be enabled again on the CI. This got botched test locally due to overridden CFLAGS usage. Fixes: commit 59268c3f1098114c0dc27b2129882faa96897a1a Changelog: silent --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fed2e4a5b..7c1a4f27f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -44,7 +44,7 @@ shared-tests: func-tests: stage: test script: - - ./configure --enable-compiler-sanitizer + - ./configure - make - cd tests - echo "DPKG_BUILDTREE = $(realpath ..)" >>.pkg-tests.conf -- Dpkg.Org's dpkg

