mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-22 09:49:14 +01:00
Update CI to use cache@v3 + ignore partial matches of cache key
This commit is contained in:
parent
69ba4f8abb
commit
924d5f7081
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
@ -15,20 +15,16 @@ jobs:
|
||||
submodules: recursive
|
||||
|
||||
- name: Restore Gradle Cache
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: /root/.gradle/
|
||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-gradle-
|
||||
|
||||
- name: Restore CXX Cache
|
||||
uses: actions/cache@v2
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: app/.cxx/
|
||||
key: ${{ runner.os }}-cxx-${{ hashFiles('**/CMakeLists.txt') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-cxx-
|
||||
|
||||
- name: Install Ninja Build
|
||||
run: |
|
||||
|
Loading…
Reference in New Issue
Block a user