Compare commits

...

1 Commits

Author SHA1 Message Date
5c2e9408c5 caching improvements
Some checks failed
Create tag and build when new code gets to main / BumpTag (push) Successful in 26s
Create tag and build when new code gets to main / Test (push) Failing after 2m6s
Create tag and build when new code gets to main / Export (push) Has been skipped
2026-01-27 17:59:10 +01:00
3 changed files with 8 additions and 0 deletions

View File

@@ -17,6 +17,8 @@ env:
jobs: jobs:
Export: Export:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache
steps: steps:
- name: Install node, xvfb and curl - name: Install node, xvfb and curl
run: | run: |

View File

@@ -38,6 +38,8 @@ jobs:
Test: Test:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache
steps: steps:
- name: Install node, xvfb and curl - name: Install node, xvfb and curl
run: | run: |
@@ -79,6 +81,8 @@ jobs:
Export: Export:
runs-on: ubuntu-latest runs-on: ubuntu-latest
env:
RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache
needs: needs:
- BumpTag - BumpTag
- Test # Wait for tests to finish - Test # Wait for tests to finish

View File

@@ -29,6 +29,8 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
if: ${{ contains(gitea.ref_name, 'release/') }} if: ${{ contains(gitea.ref_name, 'release/') }}
needs: ReleaseName needs: ReleaseName
env:
RUNNER_TOOL_CACHE: /toolcache # Runner Tool Cache
container: container:
image: barichello/godot-ci:mono-4.6 image: barichello/godot-ci:mono-4.6