Attention is currently required from: Nico Huber, Thomas Heijligen, Angel Pons.
Hello build bot (Jenkins), Nico Huber, Thomas Heijligen, Angel Pons,
I'd like you to do a code review. Please visit
https://review.coreboot.org/c/flashrom/+/68009
to review the following change.
Change subject: test_build.sh: Use multiple cores if Make is used ......................................................................
test_build.sh: Use multiple cores if Make is used
Signed-off-by: Felix Singer felixsinger@posteo.net Change-Id: Ia67e9202e49f1b4bc3301399a8ec741ac01c3ce0 Reviewed-on: https://review.coreboot.org/c/flashrom/+/67244 Reviewed-by: Thomas Heijligen src@posteo.de Reviewed-by: Nico Huber nico.h@gmx.de Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Angel Pons th3fanbus@gmail.com --- M test_build.sh 1 file changed, 16 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/09/68009/1
diff --git a/test_build.sh b/test_build.sh index 7a15c20..9f80de8 100755 --- a/test_build.sh +++ b/test_build.sh @@ -25,5 +25,5 @@ for option in ${make_programmer_opts}; do echo "Building ${option}" make clean - make CONFIG_NOTHING=yes CONFIG_${option}=yes + make -j $(nproc) CONFIG_NOTHING=yes CONFIG_${option}=yes done