From 1d661bb27989afd5925d362e7ab8fe27d9b505f6 Mon Sep 17 00:00:00 2001 From: zhangxinyuehfad <59153331+zhangxinyuehfad@users.noreply.github.com> Date: Fri, 30 Jan 2026 09:28:24 +0800 Subject: [PATCH] [Bugfix] Specify tensorflow version in accuracy test to avoid segmentation fault (#6292) ### What this PR does / why we need it? Specify tensorflow version in accuracy test to avoid segmentation fault - vLLM version: v0.14.1 - vLLM main: https://github.com/vllm-project/vllm/commit/dc917cceb877dfd13f98c538c4c96158047d98bd Signed-off-by: hfadzxy --- .github/workflows/_e2e_nightly_single_node_models.yaml | 2 +- .github/workflows/nightly_test_a2.yaml | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/_e2e_nightly_single_node_models.yaml b/.github/workflows/_e2e_nightly_single_node_models.yaml index d0932058..0064d2e8 100644 --- a/.github/workflows/_e2e_nightly_single_node_models.yaml +++ b/.github/workflows/_e2e_nightly_single_node_models.yaml @@ -111,7 +111,7 @@ jobs: if: ${{ inputs.runner == 'linux-aarch64-a2-1' && contains(inputs.model_list, 'Molmo-7B-D-0924') }} shell: bash -l {0} run: | - pip install tensorflow --no-cache-dir + pip install tensorflow==2.19.1 --no-cache-dir - name: Resolve vllm-ascend version run: | diff --git a/.github/workflows/nightly_test_a2.yaml b/.github/workflows/nightly_test_a2.yaml index 03aa1ed6..f1e89973 100644 --- a/.github/workflows/nightly_test_a2.yaml +++ b/.github/workflows/nightly_test_a2.yaml @@ -103,10 +103,7 @@ jobs: ${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || - ( - contains(github.event.pull_request.labels.*.name, 'accuracy-test') && - contains(github.event.pull_request.labels.*.name, 'ready-for-test') - ) + contains(github.event.pull_request.labels.*.name, 'accuracy-test') }} strategy: fail-fast: false