Skip to content

feat(vllm): add GPU container image build pipeline - #693

Draft
nathan-weinberg wants to merge 616 commits into
mainfrom
vllm-gpu
Draft

feat(vllm): add GPU container image build pipeline#693
nathan-weinberg wants to merge 616 commits into
mainfrom
vllm-gpu

fix(vllm): pin huggingface-hub to 1.x and drop pip cache

2e16ea5
Select commit
Loading
Failed to load commit list.
DCO-2 / DCO required action Aug 24, 2026 in 1s

Check failed

There are 4 commits incorrectly signed off, the check did not pass.

Summary


Sha Message Pass or fail reason
🟢 264e114 feat(vllm): add GPU container image build pipeline Valid sign-off found
🟢 c24942f Merge branch 'main' into vllm-gpu Skipped: sign-off not required in merge commit
🟢 7e41458 fix(openai_responses): place web-search sources in... Valid sign-off found
🟢 c941ebd fix(openai_responses): enforce max_body_bytes afte... Valid sign-off found
🟢 0a6111b fix: reject invalid query params in conversation i... Valid sign-off found
🟢 f817ff1 fix(ci): bump vLLM integration test timeouts to 30... Valid sign-off found
🟢 50f0ec2 feat(openai): resolve connector_id through configu... Valid sign-off found
🟢 4e929c0 feat(openai): support finite chat continuations (#... Valid sign-off found
🟢 681627c fix(mcp): bound dynamic session and protocol value... Valid sign-off found
🟢 011f156 fix(responses): disable parallel tools on first in... Valid sign-off found
🟢 a262cfe feat(filters): add OpenTelemetry routing spans (#7... Valid sign-off found
🟢 4341fe9 fix(conversations): align create and update reques... Valid sign-off found
🟢 6d562a7 chore(deps): switch Praxis crates from git tags to... Valid sign-off found
🔴 13dbdc7 fix(a2a): defer route commit until EOS to prevent ... No sign-off matches the author or committer
🟢 7971831 chore(deps): update Cargo.lock dependencies (#738) Valid sign-off found
🟢 e283c35 feat(file_search): full-flow-agentic example with ... Valid sign-off found
🟢 ab9c3e7 refactor(filters): rename agentic_loop to openai_a... Valid sign-off found
🟢 199095d ci(store): add PostgreSQL CI coverage for response... Valid sign-off found
🔴 c281df6 Document and Test Provider Fallback Capabilities v... No sign-off matches the author or committer
🟢 694aad6 feat(routing): add secure provider gateway boundar... Valid sign-off found
🟢 29019a0 fix: keep Praxis main compatibility fixtures curre... Valid sign-off found
🟢 3b91e3b fix(deps): update h2 for security audit (#764) Valid sign-off found
🟢 31ace48 docs: update governance docs Valid sign-off found
🟢 83041ae docs: remove proposals Valid sign-off found
🟢 aaaed15 chore(deps): cargo upgrade Valid sign-off found
🟢 8218ba4 docs: migrate proposals to centralized enhancement... Valid sign-off found
🟢 6a10f5d fix: adapt to praxis-proxy-filter 0.5.3 API change... Valid sign-off found
🟢 b3e84c2 fix(test): remove praxis-main feature gates from m... Valid sign-off found
🟢 2466a53 fix: box-pin large futures in subrequest to satisf... Valid sign-off found
🟢 8c74dc9 docs: update README.md to explain repository bound... Valid sign-off found
🟢 443390f chore(deps): cargo upgrade Valid sign-off found
🟢 bb30a0b fix(compat): align AI with Praxis main body and br... Valid sign-off found
🟢 d38857d chore(deps): bump astral-sh/setup-uv from 9.0.0 to... Skipped: sign-off not required in bot commit
🟢 d961db8 chore(deps): bump github/codeql-action/init from 4... Skipped: sign-off not required in bot commit
🟢 3363657 chore(deps): bump github/codeql-action/analyze fro... Skipped: sign-off not required in bot commit
🔴 7160330 test: opt loopback fixtures into allow_private_end... No sign-off matches the author or committer
🔴 a056da5 fix(guardrails): fail closed on NeMo redact verdic... No sign-off matches the author or committer
🟢 2e16ea5 fix(vllm): pin huggingface-hub to 1.x and drop pip... Valid sign-off found

Errors details

No sign-off matches the author or committer

A valid sign-off was found in the commit message, but it doesn't match neither the author nor the committer. Make sure that both the name and email in the sign-off line match the author or committer of the commit.

How to fix missing or invalid sign-offs

Option 1: add remediation commit

Remediation commits are not allowed for this repository. For more details about how to enable them, please see the documentation.

Option 2: fix commits without sign-off

Rebase the branch

If you have a local git environment and meet the criteria below, one option is to rebase the branch and add your Signed-off-by lines in the new commits. Please note that if others have already begun work based upon the commits in this branch, this solution will rewrite history and may cause serious issues for collaborators (described in the git documentation under "The Perils of Rebasing").

Warning

You should only do this if:

  • You are the only author of the commits in this branch
  • You are absolutely certain nobody else is doing any work based upon this branch
  • There are no empty commits in the branch

To add your Signed-off-by line to every commit in this branch:

  1. Ensure you have a local copy of your branch by checking out the pull request locally via command line.
  2. In your local branch, run: git rebase HEAD~38 --signoff
  3. Force push your changes to overwrite the branch: git push --force-with-lease origin vllm-gpu