diff --git a/tests/e2e/nightly/multi_node/scripts/run.sh b/tests/e2e/nightly/multi_node/scripts/run.sh index 58e33045..2e02f744 100644 --- a/tests/e2e/nightly/multi_node/scripts/run.sh +++ b/tests/e2e/nightly/multi_node/scripts/run.sh @@ -124,6 +124,16 @@ kill_npu_processes() { sleep 4 } +upgrade_vllm_ascend_scr() { + # Fix me(Potabk): Remove this once our image build use + # The separate architecture build process currently suffers from errors during cross-compilation + # causing the image to fail to build correctly. + # This results in the nightly test code not being the latest version. + cd "$WORKSPACE/vllm-ascend" + git pull origin main + +} + run_tests_with_log() { set +e kill_npu_processes @@ -146,6 +156,7 @@ main() { if [[ "$CONFIG_YAML_PATH" == *"DeepSeek-V3_2-Exp-bf16.yaml" ]]; then install_extra_components fi + upgrade_vllm_ascend_scr cd "$WORKSPACE/vllm-ascend" run_tests_with_log }