Skip to content

Commit 66d44b9

Browse files
authored
Rename CI Bazel cache to bazel-disk-cache (#1462)
* Rename CI Bazel cache to bazel-disk-cache * Revert
1 parent ccb185c commit 66d44b9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.bazelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build --announce_rc
1212
# We do not enable the repository cache to cache downloaded external artifacts
1313
# as these are generally faster to download again than to fetch them from the
1414
# GitHub actions cache.
15-
build --disk_cache=~/.cache/bazel
15+
build --disk_cache=~/.cache/bazel-disk-cache
1616
# Don't rely on test logs being easily accessible from the test runner,
1717
# though it makes the log noisier.
1818
test --test_output=errors

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
uses: actions/cache@v3
1818
with:
1919
path: |
20-
~/.cache/bazel
20+
~/.cache/bazel-disk-cache
2121
key: bazel-cache-${{ hashFiles('**/BUILD.bazel', '**/*.bzl', 'WORKSPACE', 'WORKSPACE.bzlmod') }}
2222
restore-keys: bazel-cache-
2323
- name: Install JDK 11

0 commit comments

Comments
 (0)