@@ -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: |
|
||||
|
||||
Reference in New Issue
Block a user