Skip to content

Commit 095ee0c

Browse files
committed
fix ccache
1 parent 6723b60 commit 095ee0c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/package_core.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run: |
2222
sudo apt-get remove --purge man-db -y # skips the mandb triggers
2323
sudo apt-get update
24-
sudo apt-get install -y --no-install-recommends git cmake wget python3-pip ninja-build ccache
24+
sudo apt-get install -y --no-install-recommends git cmake wget python3-pip ninja-build
2525
2626
- uses: actions/checkout@v4
2727
with:
@@ -80,12 +80,16 @@ jobs:
8080

8181
- name: Restore build environment
8282
run: |
83+
sudo apt-get remove --purge man-db -y # skips the mandb triggers
84+
sudo apt-get update
85+
sudo apt-get install -y --no-install-recommends git cmake wget python3-pip ninja-build ccache
8386
(cd ~ && tar --use-compress-program=unzstd -xpf build-env.tar.zstd && rm build-env.tar.zstd)
8487
8588
- name: ccache
8689
uses: hendrikmuhs/ccache-action@v1.2
8790
with:
8891
verbose: 1
92+
key: ${{ github.job }}-${{ matrix.board }}
8993

9094
- name: Build loader
9195
shell: bash

0 commit comments

Comments
 (0)