Home My Page Projects Code Snippets Project Openings devtools
Summary Activity Tracker SCM

[#2307] jenkins build cache file storage limit

Date:
2020-07-10 19:59
Priority:
3
State:
Open
Submitted by:
Charles Ballard (ccb63)
Assigned to:
Nobody (None)
branch:
py3-meson
type:
none
Summary:
jenkins build cache file storage limit

Detailed description
From groovy scripts (do not know if hard limit)

cache(caches: [[$class: 'ArbitraryFileCache',
excludes: '',
includes: 'restore.tar.*',
path: '${WORKSPACE}/devtools']],
maxCacheSize: 2560) {

And from output

+ for cache_file in 'restore.tar.gz.*'
++ du -m restore.tar.gz.aa
++ cut -f1
+ echo 'install cache file restore.tar.gz.aa created successfully, size = 1000 MB'
install cache file restore.tar.gz.aa created successfully, size = 1000 MB
+ for cache_file in 'restore.tar.gz.*'
++ du -m restore.tar.gz.ab
++ cut -f1
+ echo 'install cache file restore.tar.gz.ab created successfully, size = 1000 MB'
install cache file restore.tar.gz.ab created successfully, size = 1000 MB
+ for cache_file in 'restore.tar.gz.*'
++ du -m restore.tar.gz.ac
++ cut -f1
+ echo 'install cache file restore.tar.gz.ac created successfully, size = 148 MB'
install cache file restore.tar.gz.ac created successfully, size = 148 MB


This job fails, but 1.7Gb succeeds
Message  ↓
Date: 2020-07-13 10:03
Sender: Charles Ballard

After using bz2, cache down to 1.8Gb, but still failing

No Changes Have Been Made to This Item