[XPU][CI] Update XVLLM_PATH setup in run_xpu_ci_pytest.sh (#6018)

Download and set XVLLM_PATH from output.tar.gz instead of hardcoded path.
This commit is contained in:
Jiaxin Sui
2026-01-13 15:42:52 +08:00
committed by GitHub
parent cb9f952f32
commit becd8c3803
+3 -1
View File
@@ -83,7 +83,9 @@ python -m pip install https://paddle-whl.bj.bcebos.com/nightly/xpu-p800/paddlepa
echo "============================编译项目============================"
bash custom_ops/xpu_ops/download_dependencies.sh develop
export CLANG_PATH=$(pwd)/custom_ops/xpu_ops/third_party/xtdk
export XVLLM_PATH=$(pwd)/custom_ops/xpu_ops/third_party/xvllm
# export XVLLM_PATH=$(pwd)/custom_ops/xpu_ops/third_party/xvllm
wget https://klx-sdk-release-public.su.bcebos.com/xinfer/daily/eb/20260109/output.tar.gz --no-proxy && tar xf output.tar.gz && mv output xvllm
export XVLLM_PATH=${PWD}/xvllm
bash build.sh || exit 1
# ============ 安装测试依赖 ============