From f4129ee8a8d568b2c33943ba6af297dccbb69d90 Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Tue, 30 Mar 2021 17:43:23 +0100 Subject: [PATCH] CI: move utility tasks to prep so they don't cause a fetch Re-order the tasks so that the utility tasks don't cause update-repos to run. Change-Id: I86a528c98fe32e20428f9efbd5fb82c374aefc8a Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 75fc49d2..91b90973 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -139,7 +139,7 @@ tc0: # Report on disk usage usage: extends: .setup - stage: bootstrap + stage: prep when: manual script: - du -h -s $DL_DIR $SSTATE_DIR @@ -147,7 +147,7 @@ usage: # Wipe out old sstate prune-sstate: extends: .setup - stage: bootstrap + stage: prep when: manual script: - find $SSTATE_DIR -type f -atime +30 -delete @@ -155,7 +155,7 @@ prune-sstate: # Delete all sstate delete-sstate: extends: .setup - stage: bootstrap + stage: prep when: manual script: - rm -rf $SSTATE_DIR/*