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:
Fabian Mastenbroek 2020-07-12 14:25:48 +02:00
parent 02f139d5e2
commit 919c62f72e
No known key found for this signature in database
GPG key ID: 405FC6F81F0A7B85
2 changed files with 2 additions and 2 deletions

View file

@ -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 }}

View file

@ -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 }}