From 9522032adf1fc67c5b493d83490853a2813cdf29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Wed, 30 Mar 2022 10:16:03 +0200 Subject: 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. --- .github/actions/godot-build/action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to '.github/actions') diff --git a/.github/actions/godot-build/action.yml b/.github/actions/godot-build/action.yml index e2dd0f7626..7af3516f71 100644 --- a/.github/actions/godot-build/action.yml +++ b/.github/actions/godot-build/action.yml @@ -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: -- cgit v1.2.3