Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/_build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ jobs:
elif [[ "${PADDLEVERSION}" != "" ]];then
python -m pip install paddlepaddle-gpu==${PADDLEVERSION} -i https://www.paddlepaddle.org.cn/packages/stable/cu126/
else
python -m pip install --pre paddlepaddle-gpu -i https://www.paddlepaddle.org.cn/packages/nightly/cu126/
python -m pip install https://paddle-qa.bj.bcebos.com/paddle-pipeline/Release-TagBuild-Training-Linux-Gpu-Cuda12.6-Cudnn9.5-Trt10.5-Mkl-Avx-Gcc11-SelfBuiltPypiUse/2b9f8b689bc8988f97a5ede056c8c81bfa0332c2/paddlepaddle_gpu-3.3.1.post20260420+2b9f8b689bc-cp310-cp310-linux_x86_64.whl --extra-index-url https://www.paddlepaddle.org.cn/packages/stable/cu126/

This comment was marked as outdated.

This comment was marked as outdated.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟡 建议 这里写死到了一次具体产物 2b9f8b689bc8988f97a5ede056c8c81bfa0332c2/paddlepaddle_gpu-3.3.1.post20260420...whl,不是 PR 描述里的 release/3.3 latest。

ce_job.yml / publish_job.yml 已经通过 PADDLE_WHL_URLCOMPILE_USE_PADDLE_WHL_URL_MAPPINGS 支持分支级 wheel URL;写死后后续 release/3.3 新包不会被覆盖到,CI 会持续验证旧构建。

建议修复方式:把 release/3.3 的 latest wheel URL 放到 PADDLE_WHL_URL/仓库变量中由调用方传入,或改成 release/3.3 的 /latest/ 路径,并保留当前 PADDLE_WHL_URL 优先级。

fi

pip config set global.index-url https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_pre_ce_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ jobs:
--gpus "\"device=${DEVICES}\"" ${docker_image} /bin/bash -c '
git config --global --add safe.directory /workspace/FastDeploy
cd FastDeploy
python -m pip install --pre paddlepaddle-gpu -i https://www.paddlepaddle.org.cn/packages/nightly/cu126/
python -m pip install https://paddle-qa.bj.bcebos.com/paddle-pipeline/Release-TagBuild-Training-Linux-Gpu-Cuda12.6-Cudnn9.5-Trt10.5-Mkl-Avx-Gcc11-SelfBuiltPypiUse/2b9f8b689bc8988f97a5ede056c8c81bfa0332c2/paddlepaddle_gpu-3.3.1.post20260420+2b9f8b689bc-cp310-cp310-linux_x86_64.whl --extra-index-url https://www.paddlepaddle.org.cn/packages/stable/cu126/

This comment was marked as outdated.

This comment was marked as outdated.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🟡 建议 这个测试 workflow 也写死同一个 wheel,但调用方只向 _build_linux.yml 传入 PADDLE_WHL_URL,其他测试 workflow 仍安装 nightly/cu126。

这样构建产物与大部分测试作业不是同一 Paddle 来源,不能完整验证 develop + release/3.3;后续切换 wheel 时还需要逐个改 workflow。

建议修复方式:给 _pre_ce_test.yml 及相关测试 workflow 增加 PADDLE_WHL_URL 输入,并由 ci_image_update.yml / ce_job.yml / publish_job.yml 统一透传同一个 release/3.3 latest wheel。

python -m pip install ${fd_wheel_url}
bash scripts/run_pre_ce.sh
'
Expand Down
Loading