From 51c26b02461701d1cfa403fed1448ba4d3340507 Mon Sep 17 00:00:00 2001 From: tianlef <1095012807@qq.com> Date: Fri, 20 Mar 2026 10:57:02 +0800 Subject: [PATCH 1/3] test --- .github/workflows/ce_weekly_release.yml | 53 ++----------------------- 1 file changed, 3 insertions(+), 50 deletions(-) diff --git a/.github/workflows/ce_weekly_release.yml b/.github/workflows/ce_weekly_release.yml index 389ed80c8..48e71e367 100644 --- a/.github/workflows/ce_weekly_release.yml +++ b/.github/workflows/ce_weekly_release.yml @@ -1,6 +1,9 @@ name: CE Weekly Release on: + pull_request: + branches: + - develop schedule: - cron: '0 2 * * 6' # Weekly on Sunday at 20:00 for release workflow_dispatch: @@ -54,16 +57,6 @@ jobs: max-parallel: 2 matrix: include: - - cuda: "12.6" - python: "3.11" - - cuda: "12.6" - python: "3.12" - - cuda: "12.6" - python: "3.13" - - cuda: "13.0" - python: "3.11" - - cuda: "13.0" - python: "3.12" - cuda: "13.0" python: "3.13" env: @@ -227,16 +220,6 @@ jobs: max-parallel: 1 matrix: include: - - cuda: "12.6" - python: "3.11" - - cuda: "12.6" - python: "3.12" - - cuda: "12.6" - python: "3.13" - - cuda: "13.0" - python: "3.11" - - cuda: "13.0" - python: "3.12" - cuda: "13.0" python: "3.13" env: @@ -377,16 +360,6 @@ jobs: max-parallel: 2 matrix: include: - - cuda: "12.6" - python: "3.11" - - cuda: "12.6" - python: "3.12" - - cuda: "12.6" - python: "3.13" - - cuda: "13.0" - python: "3.11" - - cuda: "13.0" - python: "3.12" - cuda: "13.0" python: "3.13" env: @@ -617,16 +590,6 @@ jobs: max-parallel: 1 matrix: include: - - cuda: "12.6" - python: "3.11" - - cuda: "12.6" - python: "3.12" - - cuda: "12.6" - python: "3.13" - - cuda: "13.0" - python: "3.11" - - cuda: "13.0" - python: "3.12" - cuda: "13.0" python: "3.13" env: @@ -1039,16 +1002,6 @@ jobs: max-parallel: 2 matrix: include: - - cuda: "12.6" - python: "3.11" - - cuda: "12.6" - python: "3.12" - - cuda: "12.6" - python: "3.13" - - cuda: "13.0" - python: "3.11" - - cuda: "13.0" - python: "3.12" - cuda: "13.0" python: "3.13" env: From 609b28b99cd13ba8cf35a6683a37752e0ae616b9 Mon Sep 17 00:00:00 2001 From: tianlef <1095012807@qq.com> Date: Fri, 20 Mar 2026 14:16:16 +0800 Subject: [PATCH 2/3] fix --- .github/workflows/ce_weekly_release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ce_weekly_release.yml b/.github/workflows/ce_weekly_release.yml index 48e71e367..6c1938fd4 100644 --- a/.github/workflows/ce_weekly_release.yml +++ b/.github/workflows/ce_weekly_release.yml @@ -166,6 +166,7 @@ jobs: pip install ${paddle_url} --index-url=https://www.paddlepaddle.org.cn/packages/stable/${CUDA_VERSION}/ --force-reinstall --no-cache-dir fi pip install uv coverage==7.6.1 bce-python-sdk==0.8.74 wrapt matplotlib==3.10.8 pytest parameterized + pip install protobuf==7.34.0 --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple echo "Paddle Commit" python -c "import paddle; print(paddle.version.commit)" echo "PaddleFleet Commit" @@ -327,6 +328,7 @@ jobs: pip install ${paddle_url} --index-url=https://www.paddlepaddle.org.cn/packages/stable/${CUDA_VERSION}/ --force-reinstall --no-cache-dir fi pip install uv coverage==7.6.1 bce-python-sdk==0.8.74 wrapt matplotlib==3.10.8 pytest parameterized + pip install protobuf==7.34.0 --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq chmod +x /usr/local/bin/yq echo "Paddle Commit" @@ -498,6 +500,7 @@ jobs: pip install bce-python-sdk==0.8.74 pip install coverage==7.6.1 pip install librosa==0.11.0 + pip install protobuf==7.34.0 --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple echo "Paddle Commit" python -c "import paddle; print(paddle.version.commit)" echo "PaddleFleet Commit" @@ -722,6 +725,7 @@ jobs: pip install bce-python-sdk==0.8.74 pip install coverage==7.6.1 pip install librosa==0.11.0 + pip install protobuf==7.34.0 --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple echo "Paddle Commit" python -c "import paddle; print(paddle.version.commit)" echo "PaddleFleet Commit" @@ -1135,6 +1139,7 @@ jobs: pip install bce-python-sdk==0.8.74 pip install coverage==7.6.1 pip install librosa==0.11.0 + pip install protobuf==7.34.0 --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple echo "Paddle Commit" python -c "import paddle; print(paddle.version.commit)" echo "PaddleFleet Commit" From 4498879a8d04f8a4f03d30f249c002f6d3c815a0 Mon Sep 17 00:00:00 2001 From: tianlef <1095012807@qq.com> Date: Fri, 20 Mar 2026 16:08:26 +0800 Subject: [PATCH 3/3] fix --- .github/workflows/ce_weekly_release.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.github/workflows/ce_weekly_release.yml b/.github/workflows/ce_weekly_release.yml index 6c1938fd4..48e71e367 100644 --- a/.github/workflows/ce_weekly_release.yml +++ b/.github/workflows/ce_weekly_release.yml @@ -166,7 +166,6 @@ jobs: pip install ${paddle_url} --index-url=https://www.paddlepaddle.org.cn/packages/stable/${CUDA_VERSION}/ --force-reinstall --no-cache-dir fi pip install uv coverage==7.6.1 bce-python-sdk==0.8.74 wrapt matplotlib==3.10.8 pytest parameterized - pip install protobuf==7.34.0 --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple echo "Paddle Commit" python -c "import paddle; print(paddle.version.commit)" echo "PaddleFleet Commit" @@ -328,7 +327,6 @@ jobs: pip install ${paddle_url} --index-url=https://www.paddlepaddle.org.cn/packages/stable/${CUDA_VERSION}/ --force-reinstall --no-cache-dir fi pip install uv coverage==7.6.1 bce-python-sdk==0.8.74 wrapt matplotlib==3.10.8 pytest parameterized - pip install protobuf==7.34.0 --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq chmod +x /usr/local/bin/yq echo "Paddle Commit" @@ -500,7 +498,6 @@ jobs: pip install bce-python-sdk==0.8.74 pip install coverage==7.6.1 pip install librosa==0.11.0 - pip install protobuf==7.34.0 --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple echo "Paddle Commit" python -c "import paddle; print(paddle.version.commit)" echo "PaddleFleet Commit" @@ -725,7 +722,6 @@ jobs: pip install bce-python-sdk==0.8.74 pip install coverage==7.6.1 pip install librosa==0.11.0 - pip install protobuf==7.34.0 --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple echo "Paddle Commit" python -c "import paddle; print(paddle.version.commit)" echo "PaddleFleet Commit" @@ -1139,7 +1135,6 @@ jobs: pip install bce-python-sdk==0.8.74 pip install coverage==7.6.1 pip install librosa==0.11.0 - pip install protobuf==7.34.0 --extra-index-url=https://pypi.tuna.tsinghua.edu.cn/simple echo "Paddle Commit" python -c "import paddle; print(paddle.version.commit)" echo "PaddleFleet Commit"