CI: Reduce max cache to 7 GiB, remove Windows debug symbols
GitHub Actions runners only have 14 GiB available, so we need to keep the cache constrained.
This commit is contained in:
parent
f6ef63635f
commit
9522032adf
2 changed files with 5 additions and 3 deletions
5
.github/actions/godot-build/action.yml
vendored
5
.github/actions/godot-build/action.yml
vendored
|
|
@ -20,8 +20,9 @@ inputs:
|
|||
default: "${{ github.workspace }}/.scons-cache/"
|
||||
scons-cache-limit:
|
||||
description: The scons cache size limit.
|
||||
# actions/cache has 10 GiB limit. Allow 10 GiB minus 256 MiB.
|
||||
default: 9984
|
||||
# actions/cache has 10 GiB limit, and GitHub runners have a 14 GiB disk.
|
||||
# Limit to 7 GiB to avoid having the extracted cache fill the disk.
|
||||
default: 7168
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue