Unverified Commit 5157827c authored by Lucas Wilkinson's avatar Lucas Wilkinson Committed by GitHub
Browse files

[Build] Env var to disable sccache (#22968)


Signed-off-by: default avatarLucas Wilkinson <lwilkins@redhat.com>
parent 7caec10e
...@@ -60,7 +60,8 @@ MAIN_CUDA_VERSION = "12.8" ...@@ -60,7 +60,8 @@ MAIN_CUDA_VERSION = "12.8"
def is_sccache_available() -> bool: def is_sccache_available() -> bool:
return which("sccache") is not None return which("sccache") is not None and \
not bool(int(os.getenv("VLLM_DISABLE_SCCACHE", "0")))
def is_ccache_available() -> bool: def is_ccache_available() -> bool:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment