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 |
|