Skip to content

Commit a59b23a

Browse files
FedeDPalexellis
authored andcommitted
chore(ci): actually test that caching works in test.yml.
Signed-off-by: Federico Di Pierro <[email protected]>
1 parent 927cd6a commit a59b23a

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

.github/workflows/test.yml

+12-5
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,20 @@ jobs:
2727
- name: Echo kernelrelease
2828
run: uname -a
2929

30+
- name: Store KERNEL_RELEASE
31+
shell: bash
32+
run: |
33+
echo "KERNEL_RELEASE=$(uname -r)" >> $GITHUB_ENV
34+
3035
- name: Check kernel sources (empty)
31-
run: ls -la /usr/src
36+
run: ls -la /usr/src
3237

33-
- name: Test subsequent cached call
34-
uses: ./
38+
- name: Retrieve cached kernel sources
39+
uses: actions/cache@v4
3540
with:
36-
cache: 'true'
41+
path: |
42+
/usr/src/linux
43+
key: ${{ runner.os }}-${{ runner.arch }}-${{env.KERNEL_RELEASE}}
3744

3845
- name: Check kernel sources again
39-
run: ls -la /usr/src
46+
run: ls -la /usr/src

0 commit comments

Comments
 (0)