From 6129df827f4c321cff85ea6aa0d52181320adbb7 Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Mon, 10 Feb 2020 12:25:00 -0800 Subject: [PATCH] Increase vivado processes for extra parts. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- .github/kokoro/db-full.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/kokoro/db-full.sh b/.github/kokoro/db-full.sh index 6d6c63f1..23f8b780 100755 --- a/.github/kokoro/db-full.sh +++ b/.github/kokoro/db-full.sh @@ -95,7 +95,10 @@ set -e # Generate extra parts file (tilegrid, tileconn, part yaml, part json and package_pin) set +e -make db-extras-${XRAY_SETTINGS}-parts -j $CORES +( + export MAX_VIVADO_PROCESS=$((CORES/2 < 20 ? CORES/2 : 20)) + make db-extras-${XRAY_SETTINGS}-parts -j $CORES +) EXTRAS_PARTS_RET=$? set -e