From cbf964306969d7b455feeb4a948114d3cb91086f Mon Sep 17 00:00:00 2001 From: Ahmed Ibrahim Date: Tue, 7 Apr 2026 13:25:57 -0700 Subject: [PATCH] Compact Bazel failure summary --- .github/scripts/run-bazel-ci.sh | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/.github/scripts/run-bazel-ci.sh b/.github/scripts/run-bazel-ci.sh index 9eb5e46447..549a4bb7c7 100755 --- a/.github/scripts/run-bazel-ci.sh +++ b/.github/scripts/run-bazel-ci.sh @@ -162,28 +162,14 @@ print_failed_bazel_test_logs() { fi done - echo - echo "Bazel failed test targets:" - for target_log in "${failed_target_logs[@]}"; do - local target="${target_log%%$'\t'*}" - echo " FAIL ${target}" - done - echo awk -F '\t' ' BEGIN { - print "Rust test failures across failed Bazel targets:" + print "Rust test failures:" } $1 == "F" { saw_failure = 1 - if ($2 != current_target) { - if (current_target != "") { - print "" - } - current_target = $2 - print " " current_target - } - print " " $3 + print " FAIL " $2 " " $3 } $1 == "T" { passed += $3