diff options
author | Gordon MacPherson <gordon@gordonite.tech> | 2020-07-24 00:14:03 +0100 |
---|---|---|
committer | Gordon MacPherson <gordon@gordonite.tech> | 2020-07-24 00:14:03 +0100 |
commit | 3c07d0ff325598027e4cd7b5204726cb585e056e (patch) | |
tree | cc5756d78a0f4868553d5deb0e2da152043b6067 | |
parent | 819ef12d68548c8b50c99d2ce62413bafaa00d9c (diff) |
Clamp scons cache to 4096 MB
-rw-r--r-- | .github/workflows/android_builds.yml | 2 | ||||
-rw-r--r-- | .github/workflows/javascript_builds.yml | 2 | ||||
-rw-r--r-- | .github/workflows/linux_builds.yml | 2 | ||||
-rw-r--r-- | .github/workflows/macos_builds.yml | 2 | ||||
-rw-r--r-- | .github/workflows/windows_builds.yml | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/android_builds.yml b/.github/workflows/android_builds.yml index 1b3071028a..ebe91702de 100644 --- a/.github/workflows/android_builds.yml +++ b/.github/workflows/android_builds.yml @@ -3,7 +3,7 @@ on: [push, pull_request] # Global Cache Settings env: - SCONS_CACHE_LIMIT: 8192 + SCONS_CACHE_LIMIT: 4096 jobs: android-template: diff --git a/.github/workflows/javascript_builds.yml b/.github/workflows/javascript_builds.yml index c25140979b..19fa6c34fd 100644 --- a/.github/workflows/javascript_builds.yml +++ b/.github/workflows/javascript_builds.yml @@ -3,7 +3,7 @@ on: [push, pull_request] # Global Cache Settings env: - SCONS_CACHE_LIMIT: 8192 + SCONS_CACHE_LIMIT: 4096 EM_VERSION: latest EM_CACHE_FOLDER: 'emsdk-cache' diff --git a/.github/workflows/linux_builds.yml b/.github/workflows/linux_builds.yml index 8806a567fa..6f6f4669f7 100644 --- a/.github/workflows/linux_builds.yml +++ b/.github/workflows/linux_builds.yml @@ -3,7 +3,7 @@ on: [push, pull_request] # Global Cache Settings env: - SCONS_CACHE_LIMIT: 8192 + SCONS_CACHE_LIMIT: 4096 jobs: linux-editor: diff --git a/.github/workflows/macos_builds.yml b/.github/workflows/macos_builds.yml index 8624178e28..392a3da595 100644 --- a/.github/workflows/macos_builds.yml +++ b/.github/workflows/macos_builds.yml @@ -3,7 +3,7 @@ on: [push, pull_request] # Global Cache Settings env: - SCONS_CACHE_LIMIT: 8192 + SCONS_CACHE_LIMIT: 4096 jobs: macos-editor: diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml index 036f11526e..0f707062ec 100644 --- a/.github/workflows/windows_builds.yml +++ b/.github/workflows/windows_builds.yml @@ -5,7 +5,7 @@ on: [push, pull_request] # SCONS_CACHE for windows must be set in the build environment env: SCONS_CACHE_MSVC_CONFIG: true - SCONS_CACHE_LIMIT: 8192 + SCONS_CACHE_LIMIT: 4096 jobs: windows-editor: |