From 5f277c2d30f9d4f64dc30405836d1148853076c2 Mon Sep 17 00:00:00 2001 From: Alessandro Comodi Date: Fri, 24 Jan 2020 10:22:37 +0100 Subject: [PATCH] disable extra-parts generation due to high run-time Signed-off-by: Alessandro Comodi --- .github/kokoro/db-full.sh | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/kokoro/db-full.sh b/.github/kokoro/db-full.sh index 0ad87f25..dd10f56d 100755 --- a/.github/kokoro/db-full.sh +++ b/.github/kokoro/db-full.sh @@ -86,12 +86,20 @@ echo "----------------------------------------" ) echo "----------------------------------------" -# Generate extra files (additional part yaml's, harness, etc). +# Generate extra harness files (additional part yaml's, harness). set +e # Attempt to generate extra harnesses here, but don't check until after diff reporting. make db-extras-${XRAY_SETTINGS}-harness EXTRAS_HARNESS_RET=$? set -e + +# Generate extra parts file (tilegrid, tileconn, part yaml, part json and package_pin) +# TODO: Disabled for now as for big parts it takes a huge amount of time +#set +e +#make db-extras-${XRAY_SETTINGS}-parts -j $CORES +EXTRAS_PARTS_RET=0 +#set -e + # Format the database make db-format-${XRAY_SETTINGS} # Update the database/Info.md file @@ -183,13 +191,6 @@ echo "----------------------------------------" ) echo "----------------------------------------" -# Calculating extra parts here, to avoid the huge diff issue by the introduction -# of new parts -set +e -make db-extras-${XRAY_SETTINGS}-parts -j $CORES -EXTRAS_PARTS_RET=$? -set -e - # Check the database and fail if it is broken. make db-check-${XRAY_SETTINGS}