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