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:
PixelyIon 2022-05-30 22:47:07 +05:30
parent 3da67d79a1
commit 4a6978a3bb
1 changed files with 3 additions and 1 deletions

View File

@ -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