Disable ccache
This change disables ccache for the CI pipeline since the code base changes so much between workflow instantiations that ccache becomes ineffective.
This commit is contained in:
parent
02f139d5e2
commit
919c62f72e
2 changed files with 2 additions and 2 deletions
2
.github/workflows/master.yml
vendored
2
.github/workflows/master.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
|||
with:
|
||||
submodules: recursive
|
||||
- name: Build Kernel
|
||||
run: PATH="/usr/lib/ccache:${PATH}" make
|
||||
run: make
|
||||
env:
|
||||
PVE_BUILD_TYPE: ${{ matrix.build_type }}
|
||||
PVE_BUILD_CC: ${{ matrix.build_cc }}
|
||||
|
|
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
|
@ -25,7 +25,7 @@ jobs:
|
|||
with:
|
||||
submodules: recursive
|
||||
- name: Build Kernel
|
||||
run: PATH="/usr/lib/ccache:${PATH}" make
|
||||
run: make
|
||||
env:
|
||||
PVE_BUILD_TYPE: ${{ matrix.build_type }}
|
||||
PVE_BUILD_CC: ${{ matrix.build_cc }}
|
||||
|
|
Loading…
Reference in a new issue