|
@@ -111,8 +111,8 @@ jobs:
|
|
sudo rm -rf /usr/local/lib/android
|
|
sudo rm -rf /usr/local/lib/android
|
|
echo "Disk usage after:" && df -h
|
|
echo "Disk usage after:" && df -h
|
|
|
|
|
|
- - name: Setup Godot build cache
|
|
|
|
- uses: ./.github/actions/godot-cache
|
|
|
|
|
|
+ - name: Restore Godot build cache
|
|
|
|
+ uses: ./.github/actions/godot-cache-restore
|
|
with:
|
|
with:
|
|
cache-name: ${{ matrix.cache-name }}
|
|
cache-name: ${{ matrix.cache-name }}
|
|
continue-on-error: true
|
|
continue-on-error: true
|
|
@@ -140,6 +140,12 @@ jobs:
|
|
target: ${{ matrix.target }}
|
|
target: ${{ matrix.target }}
|
|
tests: ${{ matrix.tests }}
|
|
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 C# glue
|
|
- name: Generate C# glue
|
|
if: ${{ matrix.build-mono }}
|
|
if: ${{ matrix.build-mono }}
|
|
run: |
|
|
run: |
|