Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
vllm_cscc
Commits
04b5f980
Unverified
Commit
04b5f980
authored
Oct 14, 2025
by
Michael Goin
Committed by
GitHub
Oct 14, 2025
Browse files
[CI] Raise VLLM_MAX_SIZE_MB to 500 due to failing Build wheel - CUDA 12.9 (#26722)
Signed-off-by:
mgoin
<
mgoin64@gmail.com
>
parent
efc8f7d8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
.buildkite/check-wheel-size.py
.buildkite/check-wheel-size.py
+2
-2
docker/Dockerfile
docker/Dockerfile
+1
-1
No files found.
.buildkite/check-wheel-size.py
View file @
04b5f980
...
@@ -5,11 +5,11 @@ import os
...
@@ -5,11 +5,11 @@ import os
import
sys
import
sys
import
zipfile
import
zipfile
# Read the VLLM_MAX_SIZE_MB environment variable, defaulting to
4
50 MiB
# Read the VLLM_MAX_SIZE_MB environment variable, defaulting to 5
0
0 MiB
# Note that we have 800 MiB quota, please use it wisely.
# Note that we have 800 MiB quota, please use it wisely.
# See https://github.com/pypi/support/issues/6326 .
# See https://github.com/pypi/support/issues/6326 .
# Please also sync the value with the one in Dockerfile.
# Please also sync the value with the one in Dockerfile.
VLLM_MAX_SIZE_MB
=
int
(
os
.
environ
.
get
(
"VLLM_MAX_SIZE_MB"
,
4
50
))
VLLM_MAX_SIZE_MB
=
int
(
os
.
environ
.
get
(
"VLLM_MAX_SIZE_MB"
,
5
0
0
))
def
print_top_10_largest_files
(
zip_file
):
def
print_top_10_largest_files
(
zip_file
):
...
...
docker/Dockerfile
View file @
04b5f980
...
@@ -229,7 +229,7 @@ RUN --mount=type=cache,target=/root/.cache/ccache \
...
@@ -229,7 +229,7 @@ RUN --mount=type=cache,target=/root/.cache/ccache \
# Check the size of the wheel if RUN_WHEEL_CHECK is true
# Check the size of the wheel if RUN_WHEEL_CHECK is true
COPY
.buildkite/check-wheel-size.py check-wheel-size.py
COPY
.buildkite/check-wheel-size.py check-wheel-size.py
# sync the default value with .buildkite/check-wheel-size.py
# sync the default value with .buildkite/check-wheel-size.py
ARG
VLLM_MAX_SIZE_MB=
4
50
ARG
VLLM_MAX_SIZE_MB=50
0
ENV
VLLM_MAX_SIZE_MB=$VLLM_MAX_SIZE_MB
ENV
VLLM_MAX_SIZE_MB=$VLLM_MAX_SIZE_MB
ARG
RUN_WHEEL_CHECK=true
ARG
RUN_WHEEL_CHECK=true
RUN if
[
"
$RUN_WHEEL_CHECK
"
=
"true"
]
;
then
\
RUN if
[
"
$RUN_WHEEL_CHECK
"
=
"true"
]
;
then
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment