summaryrefslogtreecommitdiffstats
path: root/.github/workflows/android_builds.yml
diff options
context:
space:
mode:
authorA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-07-13 15:50:30 +0200
committerA Thousand Ships <96648715+AThousandShips@users.noreply.github.com>2024-07-13 17:45:37 +0200
commit32f8292679629fd81657ece736b4936f3f67809f (patch)
tree0d3a57bc66180165cbe54a82a62a4efc43b16349 /.github/workflows/android_builds.yml
parent97b8ad1af0f2b4a216f6f1263bef4fbc69e56c7b (diff)
downloadredot-engine-32f8292679629fd81657ece736b4936f3f67809f.tar.gz
[CI] Upload build cache before running tests
This improves turnaround time on large PRs where compilation is successful but unit testing or similar fails, forcing recompilation of unchanged code
Diffstat (limited to '.github/workflows/android_builds.yml')
-rw-r--r--.github/workflows/android_builds.yml10
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/android_builds.yml b/.github/workflows/android_builds.yml
index f99a31179e..ee75d53282 100644
--- a/.github/workflows/android_builds.yml
+++ b/.github/workflows/android_builds.yml
@@ -49,8 +49,8 @@ jobs:
distribution: temurin
java-version: 17
- - name: Setup Godot build cache
- uses: ./.github/actions/godot-cache
+ - name: Restore Godot build cache
+ uses: ./.github/actions/godot-cache-restore
with:
cache-name: ${{ matrix.cache-name }}
continue-on-error: true
@@ -66,6 +66,12 @@ jobs:
target: ${{ matrix.target }}
tests: ${{ matrix.tests }}
+ - name: Save Godot build cache
+ uses: ./.github/actions/godot-cache-save
+ with:
+ cache-name: ${{ matrix.cache-name }}
+ continue-on-error: true
+
- name: Generate Godot templates
if: matrix.target == 'template_release'
run: |