Explorar o código

Disable ccache

This change disables ccache for the CI pipeline since the code base
changes so much between workflow instantiations that ccache becomes
ineffective.
Fabian Mastenbroek %!s(int64=5) %!d(string=hai) anos
pai
achega
919c62f72e
Modificáronse 2 ficheiros con 2 adicións e 2 borrados
  1. 1 1
      .github/workflows/master.yml
  2. 1 1
      .github/workflows/release.yml

+ 1 - 1
.github/workflows/master.yml

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

+ 1 - 1
.github/workflows/release.yml

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