Răsfoiți Sursa

feat(action): add step to list cache contents for better visibility of cache usage

TheWildJames 4 luni în urmă
părinte
comite
c68dcad612
1 a modificat fișierele cu 9 adăugiri și 0 ștergeri
  1. 9 0
      .github/workflows/build.yml

+ 9 - 0
.github/workflows/build.yml

@@ -254,6 +254,15 @@ jobs:
         KBUILD_BUILD_TIMESTAMP: ${{ env.KBUILD_BUILD_TIMESTAMP }}
       uses: ./.github/actions/build-kernel
 
+    - name: List cache contents
+      run: |
+        echo "=== .ccache ==="
+        du -sh .ccache || true
+        ls -l .ccache || true
+        echo "=== .cache/bazel ==="
+        du -sh .cache/bazel || true
+        ls -l .cache/bazel || true
+
     - name: Save build caches (ccache, Bazel)
       if: always()
       uses: actions/cache@v4