forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve the cache keys to prevent clashes for the wrong type of build
- Loading branch information
1 parent
3c07d0f
commit afdce1e
Showing
5 changed files
with
31 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,11 +26,11 @@ jobs: | |
uses: RevoluPowered/[email protected] | ||
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/[email protected] | ||
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 | ||
|