From 5af3730cc89764011dbdbac02a5e917ad02e17d0 Mon Sep 17 00:00:00 2001 From: Dmitry Volyntsev Date: Wed, 11 Sep 2024 21:53:38 -0700 Subject: [PATCH] CI: removed DUMP_LEAKS flag from QuickJS build. While it is useful for debugging what objects are leaking at the end this flag hides QuickJS atom leaks from Address Sanitizer. --- .github/workflows/check-pr.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/check-pr.yml b/.github/workflows/check-pr.yml index 5b470eb9a..b2f77e1aa 100644 --- a/.github/workflows/check-pr.yml +++ b/.github/workflows/check-pr.yml @@ -39,7 +39,6 @@ jobs: - name: Check out and build quickjs run: | git clone https://github.com/bellard/quickjs - cd quickjs && curl -OL http://pp.nginx.com/pluknet/quickjs.patch && git apply quickjs.patch CFLAGS=$CC_OPT LDFLAGS=$LD_OPT $MAKE_UTILITY -j$(nproc) libquickjs.a - name: Configure and make njs