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
dynamo
Commits
b2f00651
Unverified
Commit
b2f00651
authored
Jun 05, 2025
by
Anant Sharma
Committed by
GitHub
Jun 05, 2025
Browse files
fix: enable block manager feature only for py3.12 build (#1393)
parent
b293b45b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
container/Dockerfile.vllm
container/Dockerfile.vllm
+3
-2
No files found.
container/Dockerfile.vllm
View file @
b2f00651
...
@@ -393,8 +393,9 @@ RUN uv build --wheel --out-dir /workspace/dist && \
...
@@ -393,8 +393,9 @@ RUN uv build --wheel --out-dir /workspace/dist && \
uv pip install maturin[patchelf] && \
uv pip install maturin[patchelf] && \
maturin build --release --features block-manager --out /workspace/dist && \
maturin build --release --features block-manager --out /workspace/dist && \
if [ "$RELEASE_BUILD" = "true" ]; then \
if [ "$RELEASE_BUILD" = "true" ]; then \
uv run --python 3.11 maturin build --release --features block-manager --out /workspace/dist && \
# do not enable KVBM feature, ensure compatibility with lower glibc
uv run --python 3.10 maturin build --release --features block-manager --out /workspace/dist; \
uv run --python 3.11 maturin build --release --out /workspace/dist && \
uv run --python 3.10 maturin build --release --out /workspace/dist; \
fi
fi
#######################################
#######################################
...
...
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