We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7af6ccc commit 59da8e6Copy full SHA for 59da8e6
.github/workflows/pull-request-checks.yaml
@@ -18,7 +18,7 @@ jobs:
18
# we'll keep 5 times that around per OS
19
# to account for different versions/different
20
# flags
21
- # Bump so CI runs again 1
+ # Bump so CI runs again 2
22
CCACHE_MAXSIZE: 500Mi
23
steps:
24
- uses: actions/checkout@v2
@@ -30,9 +30,12 @@ jobs:
30
uses: actions/cache@v2
31
with:
32
path: ~/.ccache
33
- key: ${{ runner.os }}
+ key: ccache-${{ runner.os }}-${{ hashFiles('**') }}
34
+ restore-keys: ccache-${{ runner.os }}
35
- name: Zero CCache statistics
- run: ccache -z
36
+ run: |
37
+ ccache -s
38
+ ccache -z
39
- name: Configure using CMake
40
run: |
41
mkdir build
0 commit comments