commenting out non-applicable PRs
This commit is contained in:
22
Dockerfile
22
Dockerfile
@@ -199,17 +199,17 @@ RUN --mount=type=cache,id=uv-cache,target=/root/.cache/uv \
|
|||||||
# patch -p1 < fastsafetensors.patch; \
|
# patch -p1 < fastsafetensors.patch; \
|
||||||
# fi
|
# fi
|
||||||
# TEMPORARY PATCH for broken vLLM build (unguarded Hopper code) - reverting PR #34758 and #34302
|
# TEMPORARY PATCH for broken vLLM build (unguarded Hopper code) - reverting PR #34758 and #34302
|
||||||
RUN curl -L https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/34758.diff | patch -p1 -R || echo "Cannot revert PR #34758, skipping"
|
# RUN curl -L https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/34758.diff | patch -p1 -R || echo "Cannot revert PR #34758, skipping"
|
||||||
RUN curl -L https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/34302.diff | patch -p1 -R || echo "Cannot revert PR #34302, skipping"
|
# RUN curl -L https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/34302.diff | patch -p1 -R || echo "Cannot revert PR #34302, skipping"
|
||||||
# TEMPORARY PATCH for broken NVFP4 quants
|
# # TEMPORARY PATCH for broken NVFP4 quants
|
||||||
RUN curl -fsL https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/38126.diff -o pr38126.diff \
|
# RUN curl -fsL https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/38126.diff -o pr38126.diff \
|
||||||
&& if git apply --reverse --check pr38126.diff 2>/dev/null; then \
|
# && if git apply --reverse --check pr38126.diff 2>/dev/null; then \
|
||||||
echo "Patch already applied, skipping."; \
|
# echo "Patch already applied, skipping."; \
|
||||||
else \
|
# else \
|
||||||
echo "Applying patch..."; \
|
# echo "Applying patch..."; \
|
||||||
git apply -v pr38126.diff; \
|
# git apply -v pr38126.diff; \
|
||||||
fi \
|
# fi \
|
||||||
&& rm pr38126.diff
|
# && rm pr38126.diff
|
||||||
|
|
||||||
# Final Compilation
|
# Final Compilation
|
||||||
RUN --mount=type=cache,id=ccache,target=/root/.ccache \
|
RUN --mount=type=cache,id=ccache,target=/root/.ccache \
|
||||||
|
|||||||
Reference in New Issue
Block a user