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:
Rémi Verschelde
2022-03-30 10:16:03 +02:00
parent f6ef63635f
commit 9522032adf
2 changed files with 5 additions and 3 deletions

View File

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