Преглед изворни кода

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 пре 5 година
родитељ
комит
919c62f72e
2 измењених фајлова са 2 додато и 2 уклоњено
  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 }}