diff options
author | Quentin Boswank <qubos@outlook.de> | 2023-09-19 19:43:10 +0200 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2023-10-04 16:12:23 +1300 |
commit | cf6b1740a14634406bb3426309dd92af8faa06fb (patch) | |
tree | ed0da4e06cb4d1051081a646aac9f2f6aa44d1df /scripts | |
parent | 591a04186547470ead163f955bc39ef9c87348c6 (diff) | |
download | crosstool-ng-cf6b1740a14634406bb3426309dd92af8faa06fb.tar.gz crosstool-ng-cf6b1740a14634406bb3426309dd92af8faa06fb.tar.bz2 crosstool-ng-cf6b1740a14634406bb3426309dd92af8faa06fb.zip |
Add more caching to the CI
more specificaly to the tarballs download. The function CT_Fetch now
touches the already existing files to be comparable to the not used ones
that can araise when a package is updated.
This comparsion is needed because if it would not exist the tarball
would grow in size due to not used but still cached packages.
This would take time but is definitly something to worry about.
Signed-off-by: Quentin Boswank <qubos@outlook.de>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/functions | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/functions b/scripts/functions index 94fd1e9e..841dce2c 100644 --- a/scripts/functions +++ b/scripts/functions @@ -956,6 +956,7 @@ CT_GetFile() # Do we already have it in *our* tarballs dir? if [ -r "${CT_TARBALLS_DIR}/${basename}${ext}" ]; then CT_DoLog DEBUG "Already have '${CT_TARBALLS_DIR}/${basename}${ext}'" + touch "${CT_TARBALLS_DIR}/${basename}${ext}" # for CI return 0 fi |