Unverified Commit b07d7416 authored by Sangyeon Cho's avatar Sangyeon Cho Committed by GitHub
Browse files

[CI/Build] workaround for CI build failure (#17070)


Signed-off-by: default avatarcsy1204 <josang1204@gmail.com>
Co-authored-by: default avatarMichael Goin <mgoin64@gmail.com>
parent 41fb013d
...@@ -162,6 +162,9 @@ ENV UV_HTTP_TIMEOUT=500 ...@@ -162,6 +162,9 @@ ENV UV_HTTP_TIMEOUT=500
COPY requirements/lint.txt requirements/lint.txt COPY requirements/lint.txt requirements/lint.txt
COPY requirements/test.txt requirements/test.txt COPY requirements/test.txt requirements/test.txt
COPY requirements/dev.txt requirements/dev.txt COPY requirements/dev.txt requirements/dev.txt
# Workaround for #17068
RUN --mount=type=cache,target=/root/.cache/uv \
uv pip install --system mamba-ssm==2.2.4 --no-build-isolation
RUN --mount=type=cache,target=/root/.cache/uv \ RUN --mount=type=cache,target=/root/.cache/uv \
uv pip install --system -r requirements/dev.txt uv pip install --system -r requirements/dev.txt
#################### DEV IMAGE #################### #################### DEV IMAGE ####################
...@@ -265,6 +268,9 @@ ADD . /vllm-workspace/ ...@@ -265,6 +268,9 @@ ADD . /vllm-workspace/
ENV UV_HTTP_TIMEOUT=500 ENV UV_HTTP_TIMEOUT=500
# install development dependencies (for testing) # install development dependencies (for testing)
# Workaround for #17068
RUN --mount=type=cache,target=/root/.cache/uv \
uv pip install --system mamba-ssm==2.2.4 --no-build-isolation
RUN --mount=type=cache,target=/root/.cache/uv \ RUN --mount=type=cache,target=/root/.cache/uv \
uv pip install --system -r requirements/dev.txt uv pip install --system -r requirements/dev.txt
......
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