From 1ec8aaf30161a9f45b7db34f9c41993e1a5b83e0 Mon Sep 17 00:00:00 2001 From: Aleksandr Malyshev <164964928+maleksan85@users.noreply.github.com> Date: Fri, 11 Oct 2024 09:13:26 -0700 Subject: [PATCH] Added sccache timeout for vllm build (#230) Co-authored-by: maleksan85 --- Dockerfile.rocm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.rocm b/Dockerfile.rocm index e2f21b2b6105c..832d6f0fa7db1 100644 --- a/Dockerfile.rocm +++ b/Dockerfile.rocm @@ -173,7 +173,7 @@ RUN cd vllm \ && python3 -m pip install -r requirements-rocm.txt \ && python3 setup.py clean --all \ && if [ ${USE_CYTHON} -eq "1" ]; then python3 setup_cython.py build_ext --inplace; fi \ - && python3 setup.py bdist_wheel --dist-dir=dist + && SCCACHE_IDLE_TIMEOUT=1800 python3 setup.py bdist_wheel --dist-dir=dist # Build gradlib RUN cd vllm/gradlib \ && python3 setup.py clean --all && python3 setup.py bdist_wheel --dist-dir=dist