From 54cabb977d2729d766e6751c61073ab1adb4c2f8 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Tue, 19 Nov 2019 17:11:04 +0100 Subject: util/release: Try reusing the local checkout for cloning git clone allows using a local repo as reference which reduces the required network traffic. Change-Id: I64722cd5dbdfc0c2bcd935715cffdb99b773711c Signed-off-by: Patrick Georgi Reviewed-on: https://review.coreboot.org/c/coreboot/+/36954 Reviewed-by: Stefan Reinauer Tested-by: build bot (Jenkins) --- util/release/build-release | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'util/release') diff --git a/util/release/build-release b/util/release/build-release index fd3f63cbc9..464388b198 100755 --- a/util/release/build-release +++ b/util/release/build-release @@ -39,10 +39,15 @@ if ! tar --sort=name -cf /dev/null /dev/null 2>/dev/null ; then fi if [ ! -d "coreboot-${VERSION_NAME}" ]; then + if [ -d .git ]; then + GIT_REF_OPTS="--reference . --dissociate" + elif [ -d ../../.git ]; then + GIT_REF_OPTS="--reference ../.. --dissociate" + fi if [ -n "${USERNAME}" ]; then - git clone "ssh://${USERNAME}@review.coreboot.org:29418/coreboot.git" "coreboot-${VERSION_NAME}" + git clone ${GIT_REF_OPTS} "ssh://${USERNAME}@review.coreboot.org:29418/coreboot.git" "coreboot-${VERSION_NAME}" else - git clone https://review.coreboot.org/coreboot.git "coreboot-${VERSION_NAME}" + git clone ${GIT_REF_OPTS} https://review.coreboot.org/coreboot.git "coreboot-${VERSION_NAME}" fi fi -- cgit v1.2.3