From 0f252c4d2411f155d26ca2d457907782e983fb3a Mon Sep 17 00:00:00 2001 From: yihong Date: Thu, 17 Apr 2025 15:34:13 +0800 Subject: [PATCH] fix: oom for sqlness test in container (#5917) Signed-off-by: yihong0618 --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index a0e4b590aa..c40b7f67cb 100644 --- a/Makefile +++ b/Makefile @@ -32,6 +32,10 @@ ifneq ($(strip $(BUILD_JOBS)),) NEXTEST_OPTS += --build-jobs=${BUILD_JOBS} endif +ifneq ($(strip $(BUILD_JOBS)),) + SQLNESS_OPTS += --jobs ${BUILD_JOBS} +endif + ifneq ($(strip $(CARGO_PROFILE)),) CARGO_BUILD_OPTS += --profile ${CARGO_PROFILE} endif