build: add cache
Build / build (push) Failing after 6m34s

This commit is contained in:
2026-06-19 10:57:20 -03:00
parent d1109105e4
commit 9df748acb3
+13 -4
View File
@@ -48,14 +48,23 @@ jobs:
echo "EOF"
} >> $GITHUB_OUTPUT
- name: Setup Tools Cache
id: tools-cache
- name: Cache CMake Binary
id: cmake-cache
uses: actions/cache@v4
with:
path: cmake-4.3.4-linux-x86_64
key: ${{ runner.os }}-cmake-4.3.4
- name: Cache FetchContent & ccache
uses: actions/cache@v4
with:
path: |
cmake-4.3.4-linux-x86_64
build/_deps
ccache
key: ${{ runner.os }}-tools-${{ hashFiles('**/CMakeLists.txt') }}
key: ${{ runner.os }}-deps-${{ hashFiles('**/CMakeLists.txt') }}-${{ github.sha }}
restore-keys: |
${{ runner.os }}-deps-${{ hashFiles('**/CMakeLists.txt') }}-
${{ runner.os }}-deps-
- name: Install tools
run: |