beacon-node-builds: run with -j1 to not disturb containers
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
21a41cb1ed
commit
318e56bd04
|
@ -30,12 +30,9 @@ fi
|
||||||
# Lower CPU and I/O priority so it doesn't affect the running beacon node
|
# Lower CPU and I/O priority so it doesn't affect the running beacon node
|
||||||
NICE="nice -n 19 ionice -c2 -n7"
|
NICE="nice -n 19 ionice -c2 -n7"
|
||||||
|
|
||||||
${NICE} make -j$(nproc) update
|
${NICE} make -j1 update
|
||||||
${NICE} make \
|
${NICE} make -j1 {{ item.targets | join(" ") }} \
|
||||||
-j$(nproc) \
|
LOG_LEVEL="TRACE" NIMFLAGS="-d:insecure -d:testnet_servers_image"
|
||||||
LOG_LEVEL="TRACE" \
|
|
||||||
NIMFLAGS="-d:insecure -d:testnet_servers_image" \
|
|
||||||
{{ item.targets | join(" ") }}
|
|
||||||
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue