-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d351f47
commit 9e2d174
Showing
1 changed file
with
3 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ jobs: | |
# A list of files, directories, and wildcard patterns to cache and restore | ||
path: ./addons/glecs/bin/${{ matrix.target }}/release/${{ matrix.glecs_lib }} | ||
# An explicit key for restoring and saving the cache | ||
key: glecslib.${{ matrix.target }}.${{ hashFiles('/addons/glecs/bin/') }} | ||
key: glecslib.${{ matrix.target }}.${{ hashFiles('**/lockfiles') }} | ||
|
||
- name: Move lib | ||
run: | | ||
|
@@ -137,8 +137,7 @@ jobs: | |
uses: actions/cache/[email protected] | ||
with: | ||
path: ./addons/glecs/bin/${{ matrix.target }}/release/${{ matrix.glecs_lib }} | ||
key: glecslib.${{ matrix.target }} | ||
restore-keys: glecslib.${{ matrix.target }} | ||
key: glecslib.${{ matrix.target }}-${{ hashFiles('**/lockfiles') }} | ||
|
||
- name: Move lib | ||
run: | | ||
|
@@ -163,7 +162,7 @@ jobs: | |
run: | | ||
godot -s res://addons/gut/gut_cmdln.gd --headless -gdir="res://unittests" -gexit | ||
update_nightly: | ||
needs: compile_glecs | ||
|
||
|