From 852eb6ce2a76c25cf27d02429c39fc0ee4ee3d0c Mon Sep 17 00:00:00 2001 From: Liangsheng Yin Date: Thu, 20 Nov 2025 18:12:51 +0800 Subject: [PATCH] [CI] optimize CI workflow info (#13634) --- .github/workflows/pr-test.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pr-test.yml b/.github/workflows/pr-test.yml index d378a9aea..65991dc3a 100644 --- a/.github/workflows/pr-test.yml +++ b/.github/workflows/pr-test.yml @@ -55,6 +55,18 @@ jobs: - "python/*.toml" - ".github/workflows/pr-test.yml" + - name: Show filter results in summary (table) + run: | + { + echo "## Change Detection" + echo "" + echo "| Component | Changed |" + echo "|----------------|---------|" + echo "| main_package | ${{ steps.filter.outputs.main_package }} |" + echo "| sgl_kernel | ${{ steps.filter.outputs.sgl_kernel }} |" + echo "| multimodal_gen | ${{ steps.filter.outputs.multimodal_gen }} |" + } >> $GITHUB_STEP_SUMMARY + # =============================================== sgl-kernel ==================================================== sgl-kernel-build-wheels: @@ -308,11 +320,6 @@ jobs: # temporarily put backend-independent cpu tests here python3 run_suite.py --hw cpu --suite default - - name: Cleanup logs directory - if: always() - run: | - rm -rf python/sglang/logs || true - multimodal-gen-test: needs: [check-changes, sgl-kernel-build-wheels] @@ -668,11 +675,6 @@ jobs: cd test/srt python3 -m unittest test_bench_serving.TestBenchServing.test_embeddings_api_batch_scaling - - name: Cleanup logs directory - if: always() - run: | - rm -rf python/sglang/logs || true - performance-test-2-gpu: needs: [check-changes, unit-test-backend-2-gpu] if: always() && !failure() && !cancelled() &&