summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/android_builds.yml10
-rw-r--r--.github/workflows/javascript_builds.yml7
-rw-r--r--.github/workflows/linux_builds.yml18
-rw-r--r--.github/workflows/macos_builds.yml18
-rw-r--r--.github/workflows/windows_builds.yml18
5 files changed, 36 insertions, 35 deletions
diff --git a/.github/workflows/android_builds.yml b/.github/workflows/android_builds.yml
index 1b3071028a..6fd2ce7239 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:
@@ -43,11 +43,11 @@ jobs:
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/
- key: ${{runner.os}}-template-${{github.sha}}
+ key: ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
restore-keys: |
- ${{runner.os}}-template-${{github.sha}}
- ${{runner.os}}-template
- ${{runner.os}}
+ ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
+ ${{github.job}}-${GITHUB_REF##*/}
+ ${{github.job}}
# Use python 3.x release (works cross platform)
- name: Set up Python 3.x
diff --git a/.github/workflows/javascript_builds.yml b/.github/workflows/javascript_builds.yml
index c25140979b..5a72b96eb8 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'
@@ -29,9 +29,10 @@ jobs:
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/
- key: ${{github.job}}-${{github.sha}}
+ key: ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
restore-keys: |
- ${{github.job}}-${{github.sha}}
+ ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
+ ${{github.job}}-${GITHUB_REF##*/}
${{github.job}}
# Additional cache for Emscripten generated system libraries
diff --git a/.github/workflows/linux_builds.yml b/.github/workflows/linux_builds.yml
index 8806a567fa..1d2d5a3fa7 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:
@@ -33,11 +33,11 @@ jobs:
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/
- key: ${{runner.os}}-editor-${{github.sha}}
+ key: ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
restore-keys: |
- ${{runner.os}}-editor-${{github.sha}}
- ${{runner.os}}-editor
- ${{runner.os}}
+ ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
+ ${{github.job}}-${GITHUB_REF##*/}
+ ${{github.job}}
# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
- name: Set up Python 3.x
@@ -90,11 +90,11 @@ jobs:
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/
- key: ${{runner.os}}-template-${{github.sha}}
+ key: ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
restore-keys: |
- ${{runner.os}}-template-${{github.sha}}
- ${{runner.os}}-template
- ${{runner.os}}
+ ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
+ ${{github.job}}-${GITHUB_REF##*/}
+ ${{github.job}}
# Use python 3.x release (works cross platform)
- name: Set up Python 3.x
diff --git a/.github/workflows/macos_builds.yml b/.github/workflows/macos_builds.yml
index 8624178e28..b896732ffc 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:
@@ -22,11 +22,11 @@ jobs:
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/
- key: ${{runner.os}}-editor-${{github.sha}}
+ key: ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
restore-keys: |
- ${{runner.os}}-editor-${{github.sha}}
- ${{runner.os}}-editor
- ${{runner.os}}
+ ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
+ ${{github.job}}-${GITHUB_REF##*/}
+ ${{github.job}}
# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
- name: Set up Python 3.x
@@ -67,11 +67,11 @@ jobs:
uses: actions/cache@v2
with:
path: ${{github.workspace}}/.scons_cache/
- key: ${{runner.os}}-template-${{github.sha}}
+ key: ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
restore-keys: |
- ${{runner.os}}-template-${{github.sha}}
- ${{runner.os}}-template
- ${{runner.os}}
+ ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
+ ${{github.job}}-${GITHUB_REF##*/}
+ ${{github.job}}
# Use python 3.x release (works cross platform)
- name: Set up Python 3.x
diff --git a/.github/workflows/windows_builds.yml b/.github/workflows/windows_builds.yml
index 036f11526e..611684debb 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:
@@ -26,11 +26,11 @@ jobs:
uses: RevoluPowered/cache@v2.1
with:
path: /.scons_cache/
- key: ${{runner.os}}-editor-${{github.sha}}
+ key: ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
restore-keys: |
- ${{runner.os}}-editor-${{github.sha}}
- ${{runner.os}}-editor
- ${{runner.os}}
+ ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
+ ${{github.job}}-${GITHUB_REF##*/}
+ ${{github.job}}
# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
- name: Set up Python 3.x
@@ -80,11 +80,11 @@ jobs:
uses: RevoluPowered/cache@v2.1
with:
path: /.scons_cache/
- key: ${{runner.os}}-template-${{github.sha}}
+ key: ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
restore-keys: |
- ${{runner.os}}-template-${{github.sha}}
- ${{runner.os}}-template
- ${{runner.os}}
+ ${{github.job}}-${GITHUB_REF##*/}-${{github.sha}}
+ ${{github.job}}-${GITHUB_REF##*/}
+ ${{github.job}}
# Use python 3.x release (works cross platform)
- name: Set up Python 3.x