mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-22 15:59:16 +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
|
submodules: recursive
|
||||||
|
|
||||||
- name: Restore Gradle Cache
|
- name: Restore Gradle Cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: /root/.gradle/
|
path: /root/.gradle/
|
||||||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle') }}
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/build.gradle') }}
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-gradle-
|
|
||||||
|
|
||||||
- name: Restore CXX Cache
|
- name: Restore CXX Cache
|
||||||
uses: actions/cache@v2
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: app/.cxx/
|
path: app/.cxx/
|
||||||
key: ${{ runner.os }}-cxx-${{ hashFiles('**/CMakeLists.txt') }}
|
key: ${{ runner.os }}-cxx-${{ hashFiles('**/CMakeLists.txt') }}
|
||||||
restore-keys: |
|
|
||||||
${{ runner.os }}-cxx-
|
|
||||||
|
|
||||||
- name: Install Ninja Build
|
- name: Install Ninja Build
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
Reference in New Issue
Block a user