Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .github/workflows/clear_cache.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Clear Bazel MacOS Cache
on:
workflow_dispatch:

jobs:
clear-cache:
runs-on: macos-latest
steps:
- name: Create empty Bazel cache dir
run: rm -rf /Users/runner/.cache/bazel && mkdir -p /Users/runner/.cache/bazel

- name: Save empty cache over old one
uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
with:
path: /Users/runner/.cache/bazel
key: bazel_osx
Loading