From 2842d89a576506eb81149a595d79dd11235db6b4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Th=C3=A9o=20-=20Le=20Filament?= <theo@le-filament.com>
Date: Tue, 30 Jul 2024 14:01:00 +0200
Subject: [PATCH] perf(get_addons): reduce git clone size when ref is a branch

---
 get_addons | 17 ++++++++++++-----
 1 file changed, 12 insertions(+), 5 deletions(-)

diff --git a/get_addons b/get_addons
index 258f628..057f2ad 100644
--- a/get_addons
+++ b/get_addons
@@ -5,6 +5,7 @@ set -e
 ODOO_ROOT_DIR=${ODOO_ROOT_DIR:-'/opt/odoo'}
 SAVE_COMMITS_DIR=${SAVE_COMMITS_DIR:-'/opt/odoo_commits'}
 SAVE_COMMITS_FILENAME=${SAVE_COMMITS_FILENAME:-'custom_addons'}
+TMP_REPO_PATH='/tmp/repo'
 
 save_commit() {
   repo="$1"
@@ -22,18 +23,24 @@ dst="$1"
 shift
 modules="$@"
 
-git clone "${repo}" /tmp/repo
-git -C /tmp/repo checkout "${ref}"
+set +e
+git clone --single-branch --branch "${ref}" --depth 1 "${repo}" "${TMP_REPO_PATH}"
+if [ "$?" -ne 0 ]; then
+git clone "${repo}" "${TMP_REPO_PATH}"
+fi
+set -e
+
+git -C "${TMP_REPO_PATH}" checkout "${ref}"
 commit="$(git -C /tmp/repo rev-parse HEAD)"
 if [ -n "$modules" ]; then
   for module in $modules; do
-    mv "/tmp/repo/${module}" "${ODOO_ROOT_DIR}/${dst}/"
+    mv "${TMP_REPO_PATH}/${module}" "${ODOO_ROOT_DIR}/${dst}/"
     save_commit "$repo" "$commit" "$module" "$dst"
   done
 else
   module="$(basename $dst)"
   mkdir -p "/${ODOO_ROOT_DIR}/${dst}"
-  mv /tmp/repo/* "${ODOO_ROOT_DIR}/${dst}/"
+  mv ${TMP_REPO_PATH}/* "${ODOO_ROOT_DIR}/${dst}/"
   save_commit "$repo" "$commit" "$module" "$dst"
 fi
-rm -r /tmp/repo
+rm -r "${TMP_REPO_PATH}"
-- 
GitLab