From 7a44af0a0b6ac67e1619f2db8f19195cb13831e7 Mon Sep 17 00:00:00 2001 From: Sarah Vaupel Date: Thu, 23 Jan 2025 12:29:00 +0100 Subject: [PATCH] build(Makefile): limit dependency build to 3G mem --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a77268364..dbd6311e1 100644 --- a/Makefile +++ b/Makefile @@ -281,7 +281,7 @@ endif stack build $(STACK_CORES) --fast --profile --library-profiling --executable-profiling --flag uniworx:-library-only $(--DEVELOPMENT) --local-bin-path $$(pwd)/bin --copy-bins # HELP(dependencies-backend): (re-)build backend dependencies --dependencies-backend: uniworx.cabal - stack build -j1 --only-dependencies + stack build -j1 -with-rtsopts="-M3G" --only-dependencies # HELP(lint-backend): lint backend --lint-backend: stack build $(STACK_CORES) --test --fast --flag uniworx:library-only $(--DEVELOPMENT) uniworx:test:hlint