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