From 674b7e9667a5372b15ad70e7b6012801ce1cd207 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Tue, 13 Sep 2022 16:20:34 +0200 Subject: [PATCH] trbo health check: detect failures due to broken pipe Signed-off-by: Holger Levsen --- bin/reproducible_system_health.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/reproducible_system_health.sh b/bin/reproducible_system_health.sh index 4b639d2e7..b6c511343 100755 --- a/bin/reproducible_system_health.sh +++ b/bin/reproducible_system_health.sh @@ -306,6 +306,8 @@ for JOB_NAME in $(ls -1d reproducible_* | sort ) ; do small_note "package 'diffoscope' has no installation candidate" elif $(grep -q "^W: No exported results found in /tmp/job-exports" $LOG) ; then small_note "build failed" + elif $(grep -q "^client_loop: send disconnect: Broken pipe" $LOG) ; then + small_note "broken pipe" fi case $JOB_NAME in reproducible_maintenance_amd64_jenkins) MODIFIER=250 ;; # main node -- GitLab