Remove insecure auto-format label workflow (#20629)

This commit is contained in:
Xiaoyu Zhang
2026-03-15 21:04:29 +08:00
committed by GitHub
parent 0cff070828
commit 45dd06f4e0
2 changed files with 4 additions and 75 deletions
+4 -4
View File
@@ -880,11 +880,11 @@ jobs:
run: |
bash scripts/ci/cuda/ci_install_dependency.sh
- name: Run benchmark smoke tests
- name: Run benchmark tests
timeout-minutes: 45
run: |
cd python/sglang/jit_kernel/benchmark
echo "Running jit-kernel benchmark smoke tests in CI mode..."
echo "Running jit-kernel benchmark tests in CI mode..."
failures=()
@@ -898,11 +898,11 @@ jobs:
done
if [ ${#failures[@]} -ne 0 ]; then
echo "The following benchmark smoke tests failed: ${failures[*]}"
echo "The following benchmark tests failed: ${failures[*]}"
exit 1
fi
echo "All jit-kernel benchmark smoke tests completed successfully!"
echo "All jit-kernel benchmark tests completed successfully!"
# =============================================== primary ====================================================