ci: Fix another place with excessive logging in server build

This commit is contained in:
Shrikant Sharat Kandula 2024-02-29 16:18:48 +05:30 committed by GitHub
parent fecb1a7202
commit 30f8eddc29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -187,7 +187,7 @@ jobs:
echo "Report files found:"
find . -type f -name 'TEST-*.xml'
echo "Test case failure lines:"
grep -oB1 'failure' $(find . -type f -name 'TEST-*.xml')
grep -FoB1 '<failure ' $(find . -type f -name 'TEST-*.xml') || true
if [[ -s failed-server-tests.txt ]]; then
content="$(
echo "## Failed server tests"