From 04421708411c234cb5f4181479850649e7aacc45 Mon Sep 17 00:00:00 2001 From: Ivan FB Date: Thu, 28 May 2026 16:17:25 +0200 Subject: [PATCH] ci: also export NIM_PARAMS so nimble tasks see -d:disableMarchNative The Makefile feeds nimble via the exported NIM_PARAMS variable (see Makefile lines 115-152). NIMFLAGS alone is not propagated to nim invocations like 'nimble testcommon', so the previous commit had no effect on the make-driven test path. Setting NIM_PARAMS ensures the flag reaches the nim compile line. Co-Authored-By: Claude Opus 4.7 --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 34cb10f9c..4950d06bc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -158,6 +158,7 @@ jobs: export MAKEFLAGS="-j1" export NIMFLAGS="--colors:off -d:chronicles_colors:none -d:disableMarchNative" + export NIM_PARAMS="-d:disableMarchNative" export USE_LIBBACKTRACE=0 make V=1 POSTGRES=$postgres_enabled test