Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions .bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@ common --javacopt=-Xlint:-options
# Remove flag once https://github.com/google/cel-spec/issues/508 and rules_jvm_external is fixed.
common --incompatible_autoload_externally=proto_library,cc_proto_library,java_proto_library,java_test

# Limit repository cache size by not caching extracted repository contents
build --repo_contents_cache=

6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Store build cache per workflow.
disk-cache: ${{ github.workflow }}
disk-cache: ${{ github.workflow }}-${{ github.job }}
# Share repository cache between workflows.
repository-cache: true
# Prevent PRs from polluting cache
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Store build cache per workflow.
disk-cache: ${{ github.workflow }}
disk-cache: ${{ github.workflow }}-${{ github.job }}
# Share repository cache between workflows.
repository-cache: true
# Prevent PRs from polluting cache
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
# Avoid downloading Bazel every time.
bazelisk-cache: true
# Store build cache per workflow.
disk-cache: ${{ github.workflow }}
disk-cache: ${{ github.workflow }}-${{ github.job }}
# Share repository cache between workflows.
repository-cache: true
# Never write to the cache, strictly read-only
Expand Down
Loading