From 45e3ba25cde0940d45943d3396c02294dd9d94ee Mon Sep 17 00:00:00 2001 From: Guy Shimko Date: Wed, 15 Jan 2025 23:20:47 +0200 Subject: [PATCH] build: Build `make build` and `make pack` sequentially Building multiple targets in parallel may cause docker race conditions. --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 12abc94..5791380 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,8 @@ BUILD_PACKAGES_DIR := "build/packages" .PHONY: clean help download_packages build build-docker-image $(ALL_TARGETS) $(ALL_PACK_TARGETS) +.NOTPARALLEL: build pack + help: @echo "Usage:" @echo " make build"