mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-23 00:19:20 +01:00
Extend CI C++ build cache
The CI didn't cache the C++ build related directories under `app/build/` which caused a full recompilation of C++ code, this takes a significant amount of time.
This commit is contained in:
parent
3da67d79a1
commit
4a6978a3bb
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -23,7 +23,9 @@ jobs:
|
||||
- name: Restore CXX Cache
|
||||
uses: actions/cache@v3
|
||||
with:
|
||||
path: app/.cxx/
|
||||
path: |
|
||||
app/.cxx/
|
||||
app/build/intermediates/cxx/
|
||||
key: ${{ runner.os }}-cxx-${{ hashFiles('**/CMakeLists.txt') }}
|
||||
|
||||
- name: Install Ninja Build
|
||||
|
Loading…
Reference in New Issue
Block a user