Archived
Public Access
Raise ccache max size to 8G
2G is tight when caching objects across kernel-version transitions (the cache holds more than one X.Y.Z at a time); 8G keeps older objects from being evicted prematurely. ccache only stores what a build produces, so this raises the cap, not the per-run size. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -157,7 +157,7 @@ jobs:
|
||||
echo "/usr/lib/ccache" >> "$GITHUB_PATH"
|
||||
{
|
||||
echo "CCACHE_DIR=$HOME/.ccache"
|
||||
echo "CCACHE_MAXSIZE=2G"
|
||||
echo "CCACHE_MAXSIZE=8G"
|
||||
echo "CCACHE_COMPRESS=1"
|
||||
} >> "$GITHUB_ENV"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user