From f796a386771b723be5a3a303d56602e651ea99a6 Mon Sep 17 00:00:00 2001 From: brooke Date: Thu, 18 Jul 2024 11:24:36 -0400 Subject: [PATCH] decrease jobs, runner will try spinning up 4 builds at once --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index fe7b64a..488d78f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -20,7 +20,7 @@ WORKDIR node-v${NODE_VERSION} RUN ./configure --prefix=/usr --shared-brotli --shared-zlib --shared-libuv --shared-openssl --shared-cares --shared-nghttp2 --ninja --without-npm --with-intl=system-icu --openssl-use-def-ca-store -RUN make JOBS=64 BUILDTYPE=Release +RUN make JOBS=16 BUILDTYPE=Release RUN make install