diff options
author | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-07-13 16:24:13 +0200 |
---|---|---|
committer | A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> | 2024-07-13 16:25:12 +0200 |
commit | 76b38de01a31c5c1762c4b8239e7a51ebea84bef (patch) | |
tree | 874b1daf304a80eb8458135999e00eacc5bb65cf /.github/actions | |
parent | 6d939e6878c3fb14ae521207ad2d2f0267fd0a9b (diff) | |
download | redot-cpp-76b38de01a31c5c1762c4b8239e7a51ebea84bef.tar.gz |
[CI] Upload build cache before running tests
Diffstat (limited to '.github/actions')
-rw-r--r-- | .github/actions/godot-cache-restore/action.yml (renamed from .github/actions/godot-cache/action.yml) | 9 | ||||
-rw-r--r-- | .github/actions/godot-cache-save/action.yml | 17 |
2 files changed, 21 insertions, 5 deletions
diff --git a/.github/actions/godot-cache/action.yml b/.github/actions/godot-cache-restore/action.yml index 2d7afc8..5df5776 100644 --- a/.github/actions/godot-cache/action.yml +++ b/.github/actions/godot-cache-restore/action.yml @@ -1,5 +1,5 @@ -name: Setup Godot build cache -description: Setup Godot build cache. +name: Restore Godot build cache +description: Restore Godot build cache. inputs: cache-name: description: The cache base name (job name by default). @@ -10,9 +10,8 @@ inputs: runs: using: "composite" steps: - # Upload cache on completion and check it out now - - name: Load .scons_cache directory - uses: actions/cache@v3 + - name: Restore .scons_cache directory + uses: actions/cache/restore@v3 with: path: ${{inputs.scons-cache}} key: ${{inputs.cache-name}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}} diff --git a/.github/actions/godot-cache-save/action.yml b/.github/actions/godot-cache-save/action.yml new file mode 100644 index 0000000..b7cbf91 --- /dev/null +++ b/.github/actions/godot-cache-save/action.yml @@ -0,0 +1,17 @@ +name: Save Godot build cache +description: Save Godot build cache. +inputs: + cache-name: + description: The cache base name (job name by default). + default: "${{github.job}}" + scons-cache: + description: The SCons cache path. + default: "${{github.workspace}}/.scons-cache/" +runs: + using: "composite" + steps: + - name: Save SCons cache directory + uses: actions/cache/save@v4 + with: + path: ${{inputs.scons-cache}} + key: ${{inputs.cache-name}}-${{env.GODOT_BASE_BRANCH}}-${{github.ref}}-${{github.sha}} |