From 5ddd2f6b6bdafaa3b67a26eadbae65573faf1fd3 Mon Sep 17 00:00:00 2001 From: Kangyan-Zhou Date: Sat, 29 Nov 2025 20:13:59 -0800 Subject: [PATCH] Always run model evaluation even if the trace upload step fails (#14157) --- .github/workflows/nightly-test-nvidia.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/nightly-test-nvidia.yml b/.github/workflows/nightly-test-nvidia.yml index 4c5aef6f0..37d364392 100644 --- a/.github/workflows/nightly-test-nvidia.yml +++ b/.github/workflows/nightly-test-nvidia.yml @@ -440,6 +440,7 @@ jobs: python3 scripts/ci/publish_traces.py --traces-dir test/performance_profiles_deepseek_v31 - name: Run DeepSeek v3.2 nightly performance test + if: always() timeout-minutes: 180 env: TRACE_BASE_URL: https://raw.githubusercontent.com/sglang-bot/sglang-ci-data/main/traces/${{ github.run_id }} @@ -459,6 +460,7 @@ jobs: python3 scripts/ci/publish_traces.py --traces-dir test/performance_profiles_deepseek_v32 - name: Run Kimi-K2-Thinking nightly performance test + if: always() timeout-minutes: 180 env: TRACE_BASE_URL: https://raw.githubusercontent.com/sglang-bot/sglang-ci-data/main/traces/${{ github.run_id }} @@ -478,6 +480,7 @@ jobs: python3 scripts/ci/publish_traces.py --traces-dir test/performance_profiles_kimi_k2_thinking - name: Run Qwen3-235B nightly performance test + if: always() timeout-minutes: 180 env: TRACE_BASE_URL: https://raw.githubusercontent.com/sglang-bot/sglang-ci-data/main/traces/${{ github.run_id }} @@ -497,6 +500,7 @@ jobs: python3 scripts/ci/publish_traces.py --traces-dir test/performance_profiles_qwen3_235b - name: Run GLM-4.6 nightly performance test + if: always() timeout-minutes: 180 env: TRACE_BASE_URL: https://raw.githubusercontent.com/sglang-bot/sglang-ci-data/main/traces/${{ github.run_id }} @@ -516,6 +520,7 @@ jobs: python3 scripts/ci/publish_traces.py --traces-dir test/performance_profiles_glm_4_6 - name: Run MiniMax-M2 nightly performance test + if: always() timeout-minutes: 180 env: TRACE_BASE_URL: https://raw.githubusercontent.com/sglang-bot/sglang-ci-data/main/traces/${{ github.run_id }}