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" echo "EOF"
} >> $GITHUB_OUTPUT } >> $GITHUB_OUTPUT
- name: Setup Tools Cache - name: Cache CMake Binary
id: tools-cache 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 uses: actions/cache@v4
with: with:
path: | path: |
cmake-4.3.4-linux-x86_64 build/_deps
ccache 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 - name: Install tools
run: | run: |