[Nightly] Optimize nightly CI (#4509)

### What this PR does / why we need it?
1. Optimize multi-node waiting logic
2. Remove the `tee` pipeline for logs, which will lead to hang issue

### How was this patch tested?


- vLLM version: v0.12.0
- vLLM main: https://github.com/vllm-project/vllm/commit/v0.12.0

Signed-off-by: wangli <wangli858794774@gmail.com>
This commit is contained in:
Li Wang
2025-12-04 22:31:07 +08:00
committed by GitHub
parent fb15fec662
commit 283bc5c7ba
8 changed files with 90 additions and 105 deletions

View File

@@ -31,8 +31,8 @@ class NodeInfo:
return (f"NodeInfo:\n"
f" index={self.index}\n"
f" ip={self.ip}\n"
f" server_port={self.server_port}\n"
f" headless={self.headless}")
f" headless={self.headless}\n"
f" server_port={self.server_port}")
class MultiNodeConfig: