From 3b274b4e44f29c9fede663d641b86faf1707f3df Mon Sep 17 00:00:00 2001
From: Yaroslav Dynnikov <yaroslav.dynnikov@gmail.com>
Date: Wed, 9 Nov 2022 20:10:46 +0300
Subject: [PATCH] fix(ci): build master branch with clean cache

CI on master branch always reuses the same archive. As a result, its
size gradually grows. It already takes more than 6GB, while it should be
about 3GB large. It makes restoring the cache slower and slower.

With this patch the cache is cleared every time in master branch.
---
 .gitlab-ci.yml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b71cc2d05c..2dee18f0b6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -135,7 +135,9 @@ test:
     # Gitlab CI caching is shit. So we implement it manually
     - |
       # Restore cache
-      if [ -f "${CACHE_ARCHIVE}" ]; then
+      if [ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]; then
+        echo "Skip restoring cache on the master branch"
+      elif [ -f "${CACHE_ARCHIVE}" ]; then
         ci-log-section start "restore-cache" Restoring cache from ${CACHE_ARCHIVE} ...
         tar -xf ${CACHE_ARCHIVE}
         echo "Ok"
-- 
GitLab