sarutak commented on code in PR #56769:
URL: https://github.com/apache/spark/pull/56769#discussion_r3473412447


##########
.github/workflows/test_report.yml:
##########
@@ -41,7 +41,17 @@ jobs:
         github-token: ${{ secrets.GITHUB_TOKEN }}
         run-id: ${{ github.event.workflow_run.id }}
         pattern: "test-*"
+    - name: Check if test results exist
+      id: check
+      run: |
+        if find . -path '*/target/test-reports/*.xml' | grep -q .; then

Review Comment:
   Good catch. Fixed by using `-print -quit` so that find exits cleanly after 
the first match and never receives SIGPIPE.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to