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
c7c98510
Unverified
Commit
c7c98510
authored
Jan 24, 2025
by
youkaichao
Committed by
GitHub
Jan 24, 2025
Browse files
[ci/build] fix wheel size check (#12396)
Signed-off-by:
youkaichao
<
youkaichao@gmail.com
>
parent
3c818bdb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
.buildkite/check-wheel-size.py
.buildkite/check-wheel-size.py
+4
-2
No files found.
.buildkite/check-wheel-size.py
View file @
c7c98510
...
...
@@ -2,8 +2,10 @@ import os
import
sys
import
zipfile
# Read the VLLM_MAX_SIZE_MB environment variable, defaulting to 250 MB
VLLM_MAX_SIZE_MB
=
int
(
os
.
environ
.
get
(
'VLLM_MAX_SIZE_MB'
,
250
))
# Read the VLLM_MAX_SIZE_MB environment variable, defaulting to 300 MiB
# Note that we have 400 MiB quota, please use it wisely.
# See https://github.com/pypi/support/issues/3792 .
VLLM_MAX_SIZE_MB
=
int
(
os
.
environ
.
get
(
'VLLM_MAX_SIZE_MB'
,
300
))
def
print_top_10_largest_files
(
zip_file
):
...
...
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