File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 16
16
XFORMERS_BUILD_VERSION : 0.0.29.post2+cu124
17
17
FLASHINFER_REF : v0.2.2.post1
18
18
FLASHINFER_BUILD_SUFFIX : cu124
19
- VLLM_PR : 16104
20
19
VLLM_REF : v0.8.3
21
20
VLLM_BUILD_VERSION : 0.8.3
22
21
72
71
XFORMERS_BUILD_VERSION=${{ env.XFORMERS_BUILD_VERSION }}
73
72
FLASHINFER_REF=${{ env.FLASHINFER_REF }}
74
73
FLASHINFER_BUILD_SUFFIX=${{ env.FLASHINFER_BUILD_SUFFIX }}
75
- VLLM_PR=${{ env.VLLM_PR }}
76
74
VLLM_REF=${{ env.VLLM_REF }}
77
75
VLLM_BUILD_VERSION=${{ env.VLLM_BUILD_VERSION }}
78
76
cache-from : type=registry,ref=${{ env.GHCR_IMAGE }}:cache-cu${{ env.CUDA_TAG }}-${{ matrix.image_distro }}-${{ matrix.arch }}
Original file line number Diff line number Diff line change @@ -167,19 +167,13 @@ FROM build-base AS build-vllm
167
167
COPY --from=build-torch /wheels/*.whl wheels/
168
168
RUN uv pip install wheels/*
169
169
170
- ARG VLLM_PR
171
170
ARG VLLM_REF=v0.8.3
172
171
ARG VLLM_BUILD_VERSION=0.8.3
173
172
ENV BUILD_VERSION=${VLLM_BUILD_VERSION:-${VLLM_REF#v}}
174
173
ENV SETUPTOOLS_SCM_PRETEND_VERSION=${BUILD_VERSION:-:}
175
174
RUN git clone https://github.com/vllm-project/vllm.git
176
175
RUN cd vllm && \
177
- if [ -n ${VLLM_PR} ]; then \
178
- git fetch origin pull/${VLLM_PR}/head:${VLLM_PR} && \
179
- git checkout ${VLLM_PR}; \
180
- else \
181
- git checkout ${VLLM_REF}; \
182
- fi && \
176
+ git checkout ${VLLM_REF} && \
183
177
python use_existing_torch.py && \
184
178
uv pip install -r requirements/build.txt && \
185
179
uv build --wheel --no-build-isolation -o /wheels
You can’t perform that action at this time.
0 commit comments