mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 06:05:40 +12:00
add gradle caching system
This commit is contained in:
parent
9884663347
commit
0aa024876e
1 changed files with 20 additions and 0 deletions
20
.github/workflows/Android_Build.yml
vendored
20
.github/workflows/Android_Build.yml
vendored
|
@ -23,6 +23,16 @@ jobs:
|
|||
- name: Fetch submodules
|
||||
run: git submodule update --init --recursive
|
||||
|
||||
- name: Set up gradle caches
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/wrapper
|
||||
key: ${{ runner.os }}-pandroid-x86_64-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pandroid-x86_64-
|
||||
|
||||
- name: Setup Vulkan SDK
|
||||
uses: humbletim/setup-vulkan-sdk@v1.2.0
|
||||
with:
|
||||
|
@ -78,6 +88,16 @@ jobs:
|
|||
- name: Fetch submodules
|
||||
run: git submodule update --init --recursive
|
||||
|
||||
- name: Set up gradle caches
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: |
|
||||
~/.gradle/caches
|
||||
~/.gradle/wrapper
|
||||
key: ${{ runner.os }}-pandroid-arm64-${{ github.sha }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-pandroid-arm64-
|
||||
|
||||
- name: Setup Vulkan SDK
|
||||
uses: humbletim/setup-vulkan-sdk@v1.2.0
|
||||
with:
|
||||
|
|
Loading…
Add table
Reference in a new issue