diff --git a/.bazelrc b/.bazelrc index b4d109ea9..ae7c74944 100644 --- a/.bazelrc +++ b/.bazelrc @@ -12,6 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +startup --digest_function=blake3 + # Use the earliest supported C++ version for protoc. build --cxxopt=-std=c++14 --host_cxxopt=-std=c++14 diff --git a/deployment-examples/docker-compose/local-storage-cas.json b/deployment-examples/docker-compose/local-storage-cas.json index b54b96a1a..125d02931 100644 --- a/deployment-examples/docker-compose/local-storage-cas.json +++ b/deployment-examples/docker-compose/local-storage-cas.json @@ -6,26 +6,20 @@ { "stores": { "CAS_MAIN_STORE": { - "verify": { + "compression": { + "compression_algorithm": { + "lz4": {} + }, "backend": { - "compression": { - "compression_algorithm": { - "lz4": {} - }, - "backend": { - "filesystem": { - "content_path": "~/.cache/nativelink/content_path-cas", - "temp_path": "~/.cache/nativelink/tmp_path-cas", - "eviction_policy": { - // 10gb. - "max_bytes": 10000000000, - } - } + "filesystem": { + "content_path": "~/.cache/nativelink/content_path-cas", + "temp_path": "~/.cache/nativelink/tmp_path-cas", + "eviction_policy": { + // 10gb. + "max_bytes": 10000000000, } } - }, - "verify_size": true, - "hash_verification_function": "sha256" + } } }, "AC_MAIN_STORE": {