Skip to content

Commit

Permalink
ci: check bazel cache 5
Browse files Browse the repository at this point in the history
  • Loading branch information
tiann committed Oct 22, 2023
1 parent 65c7d87 commit 9c9b735
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gki-kernel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,10 +181,10 @@ jobs:
- name: Check bazel cache
if: inputs.use_cache == true
run:
run: |
if [ -e /home/runner/.cache/bazel ]; then
du -sh /home/runner/.cache/bazel
find /home/runner/.cache/bazel -type f -size +10M | xargs rm -f
find /home/runner/.cache/bazel -type f -size +10M -exec rm -f {} \;
du -sh /home/runner/.cache/bazel
fi
Expand Down

0 comments on commit 9c9b735

Please sign in to comment.