|
@@ -99,8 +99,8 @@ jobs:
|
|
with:
|
|
with:
|
|
submodules: recursive
|
|
submodules: recursive
|
|
|
|
|
|
- - 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
|
|
@@ -153,6 +153,12 @@ jobs:
|
|
cd test
|
|
cd test
|
|
scons platform=${{ matrix.platform }} verbose=yes target=template_release ${{ matrix.flags }}
|
|
scons platform=${{ matrix.platform }} verbose=yes target=template_release ${{ matrix.flags }}
|
|
|
|
|
|
|
|
+ - name: Save Godot build cache
|
|
|
|
+ uses: ./.github/actions/godot-cache-save
|
|
|
|
+ with:
|
|
|
|
+ cache-name: ${{ matrix.cache-name }}
|
|
|
|
+ continue-on-error: true
|
|
|
|
+
|
|
- name: Download latest Godot artifacts
|
|
- name: Download latest Godot artifacts
|
|
uses: dsnopek/action-download-artifact@1322f74e2dac9feed2ee76a32d9ae1ca3b4cf4e9
|
|
uses: dsnopek/action-download-artifact@1322f74e2dac9feed2ee76a32d9ae1ca3b4cf4e9
|
|
if: ${{ matrix.run-tests && env.GODOT_TEST_VERSION == 'master' }}
|
|
if: ${{ matrix.run-tests && env.GODOT_TEST_VERSION == 'master' }}
|