Skip to content

Commit

Permalink
Remove the bazel cache, clearing it MAY resolve build errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowc committed Jan 6, 2025
1 parent f226b82 commit 7888c32
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Mount bazel cache
uses: actions/cache@v4
with:
# See https://docs.bazel.build/versions/master/output_directories.html
path: "~/.cache/bazel"
# Create a new cache entry whenever Bazel files change.
# See https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows
key: bazel-${{ runner.os }}-build-${{ hashFiles('**/*.bzl', '**/*.bazel') }}
restore-keys: |
bazel-${{ runner.os }}-build-
# - name: Mount bazel cache
# uses: actions/cache@v4
# with:
# # See https://docs.bazel.build/versions/master/output_directories.html
# path: "~/.cache/bazel"
# # Create a new cache entry whenever Bazel files change.
# # See https://docs.github.com/en/actions/guides/caching-dependencies-to-speed-up-workflows
# key: bazel-${{ runner.os }}-build-${{ hashFiles('**/*.bzl', '**/*.bazel') }}
# restore-keys: |
# bazel-${{ runner.os }}-build-
- name: Install bazelisk
run: |
curl -LO "https://github.com/bazelbuild/bazelisk/releases/download/v1.19.0/$BAZEL"
Expand Down

0 comments on commit 7888c32

Please sign in to comment.