From 54e695f4b64b0a1bb5f6502a9d94e50ee41cda5c Mon Sep 17 00:00:00 2001 From: darshankabariya Date: Fri, 24 Apr 2026 16:10:33 +0530 Subject: [PATCH] fix: restore -d:postgres in nimble task and propagate NIMFLAGS --- waku.nimble | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/waku.nimble b/waku.nimble index d99f05e84..ea9268080 100644 --- a/waku.nimble +++ b/waku.nimble @@ -76,7 +76,7 @@ proc getMyCPU(): string = return " --cpu:amd64 " proc getNimParams(): string = - return " " & getEnv("NIM_PARAMS") & " " + return " " & getEnv("NIM_PARAMS") & " " & getEnv("NIMFLAGS") & " " ### Helper functions proc buildModule(filePath, params = ""): bool = @@ -379,7 +379,7 @@ task testcommon, "Build & run common tests": ### Waku tasks task wakunode2, "Build Waku v2 cli node": let name = "wakunode2" - buildBinary name, "apps/wakunode2/", " -d:chronicles_log_level=TRACE " + buildBinary name, "apps/wakunode2/", " -d:chronicles_log_level=TRACE -d:postgres " task benchmarks, "Some benchmarks": let name = "benchmarks"