chore: use max 4 cores for parallel execution
This commit is contained in:
parent
dc30d8836b
commit
d917ae1da8
|
@ -2,7 +2,7 @@
|
|||
|
||||
.DEFAULT_GOAL = install
|
||||
SHELL = bash
|
||||
CPU_CORES = $(shell nproc)
|
||||
CPU_CORES = $$(( $(shell nproc) > 4 ? 4 : $(shell nproc) ))
|
||||
|
||||
# PIP_INSTALL = --editable .
|
||||
# PYLINT_ARG =
|
||||
|
|
Loading…
Reference in New Issue