[CI] Fix partial instability issues (#4418)

This commit is contained in:
YuBaoku
2025-10-15 11:13:43 +08:00
committed by GitHub
parent c1a2e78b18
commit 4b647d17de
10 changed files with 13 additions and 10 deletions

View File

@@ -55,7 +55,7 @@ jobs:
fi
'
wget -q ${fd_archive_url}
wget -q --no-proxy ${fd_archive_url}
tar -xf FastDeploy.tar.gz
rm -rf FastDeploy.tar.gz
cd FastDeploy

View File

@@ -55,7 +55,7 @@ jobs:
fi
'
wget -q ${fd_archive_url}
wget -q --no-proxy ${fd_archive_url}
tar -xf FastDeploy.tar.gz
rm -rf FastDeploy.tar.gz
cd FastDeploy

View File

@@ -82,7 +82,7 @@ jobs:
fi
'
wget -q ${fd_archive_url}
wget -q --no-proxy ${fd_archive_url}
tar -xf FastDeploy.tar.gz
rm -rf FastDeploy.tar.gz
cd FastDeploy

View File

@@ -53,7 +53,7 @@ jobs:
fi
'
wget -q ${fd_archive_url}
wget -q --no-proxy ${fd_archive_url}
tar -xf FastDeploy.tar.gz
rm -rf FastDeploy.tar.gz
cd FastDeploy

View File

@@ -32,6 +32,7 @@ on:
jobs:
run_tests_logprob:
runs-on: [self-hosted, GPU-h20-1Cards]
timeout-minutes: 60
steps:
- name: Code Prepare
shell: bash
@@ -47,7 +48,7 @@ jobs:
${docker_image} /bin/bash -c '
rm -rf /workspace/*
'
wget -q ${paddletest_archive_url}
wget -q --no-proxy ${paddletest_archive_url}
tar -xf PaddleTest.tar.gz
rm -rf PaddleTest.tar.gz
cd PaddleTest

View File

@@ -57,7 +57,7 @@ jobs:
fi
'
wget -q ${fd_archive_url}
wget -q --no-proxy ${fd_archive_url}
tar -xf FastDeploy.tar.gz
rm -rf FastDeploy.tar.gz
cd FastDeploy

View File

@@ -55,7 +55,7 @@ jobs:
fi
'
wget -q ${fd_archive_url}
wget -q --no-proxy ${fd_archive_url}
tar -xf FastDeploy.tar.gz
rm -rf FastDeploy.tar.gz
cd FastDeploy

View File

@@ -71,7 +71,7 @@ jobs:
fi
'
wget -q ${fd_archive_url}
wget -q --no-proxy ${fd_archive_url}
tar -xf FastDeploy.tar.gz
rm -rf FastDeploy.tar.gz
cd FastDeploy
@@ -300,7 +300,7 @@ jobs:
env:
diff_cov_file_url: ${{ needs.run_tests_with_coverage.outputs.diff_cov_file_url }}
run: |
wget ${fd_archive_url}
wget -q --no-proxy ${fd_archive_url}
tar -xf FastDeploy.tar.gz
cd FastDeploy
if [ -z "${diff_cov_file_url}" ]; then

View File

@@ -302,7 +302,7 @@ jobs:
rm -rf ${REPO_NAME}*
fi
'
wget -q ${fd_archive_url}
wget -q --no-proxy ${fd_archive_url}
tar -xf FastDeploy.tar.gz
rm -rf FastDeploy.tar.gz
cd FastDeploy

View File

@@ -6,3 +6,5 @@ addopts =
--ignore=tests/operators/test_fused_moe.py
--ignore=tests/operators/test_w4afp8_gemm.py
--ignore=tests/model_loader/test_w4a8_model.py
--ignore=tests/operators/test_speculate_verify.py
--ignore=tests/e2e/test_DeepSeek_V3_5layers_serving.py