From da641b79f443ac7e208959b3f77800093fba1329 Mon Sep 17 00:00:00 2001 From: Mikhail Tupitsyn Date: Wed, 25 Oct 2023 14:53:56 -0700 Subject: [PATCH] Limit parallel image processing to 1 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ad389af63..159ae0eba 100644 --- a/Makefile +++ b/Makefile @@ -71,7 +71,7 @@ images: validate-images $(call header,"Synchronizing container images into $(BUILDDIR)/docker") @$(MAKE) $(BUILDDIR)/docker $(BUILDDIR)/docker: - parallel -j5 --halt-on-error now,fail=1 -v \ + parallel -j1 --halt-on-error now,fail=1 -v \ -a build/images/index.txt --colsep '\t' \ build/images/sync.sh "{1}" "{2}" "$(BUILDDIR)/docker/" cp "build/images/index.txt" "dist/$(RELEASE)-images.txt"