From dedbea4cd8b11e622476eba8bccb538faff958b3 Mon Sep 17 00:00:00 2001 From: brandon s allbery kf8nh Date: Fri, 3 Oct 2025 16:15:26 -0400 Subject: [PATCH] indicate which of the joined tests failed So people don't have to open all of the collapsed test output to find any failures. (cherry picked from commit e93d9c0b2969b8a22865390adaf9cb120329425a) --- .github/workflows/validate.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index abf19bffab8..13a77e74c97 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -234,6 +234,10 @@ jobs: echo Validate "$test" sh validate.sh $FLAGS -s "$test" || rc=1 echo End "$test" + echo ::endgroup:: + if [ $rc -eq 1 ]; then + echo Some tests failed + fi done exit $rc # The above ensures all the tests get run, for a single platform+ghc.