From 78a7cf85d3735b212b88c3841662346671018a37 Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Tue, 30 Nov 2021 14:51:31 -0800 Subject: [PATCH] increase scons cache size for CI devices old-commit-hash: bc57ffd16ff2154a9c9126648233c8439dcffe9c --- selfdrive/manager/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/manager/build.py b/selfdrive/manager/build.py index 04769526ff..d6429092ea 100755 --- a/selfdrive/manager/build.py +++ b/selfdrive/manager/build.py @@ -14,7 +14,7 @@ from selfdrive.hardware import TICI from selfdrive.swaglog import cloudlog, add_file_handler from selfdrive.version import get_dirty -MAX_CACHE_SIZE = 2e9 +MAX_CACHE_SIZE = 4e9 if "CI" in os.environ else 2e9 CACHE_DIR = Path("/data/scons_cache" if TICI else "/tmp/scons_cache") TOTAL_SCONS_NODES = 2405