Commit e672d5cf authored by Holger Levsen's avatar Holger Levsen
Browse files

reproducible system health: detect failures to update pkg sets

parent debcfa9b
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -143,6 +143,9 @@ for JOB_NAME in $(ls -1d reproducible_* | sort ) ; do
			elif $(grep -q "Warning: dose-deb-coinstall cannot calculate" $LOG) ; then
				PKG_SET_PROBLEMS=$(grep "Warning: dose-deb-coinstall cannot calculate" $LOG | cut -d "'" -f2 | cut -d ' ' -f9 | sort -u | xargs echo || true)
				small_note "cannot calculate installable set(s): $PKG_SET_PROBLEMS"
			elif $(grep -q "^Warning: could not update" $LOG) ; then
				PKG_SET_PROBLEMS=$(grep "^Warning: could not update" $LOG | cut -d ' ' -f5 | sort -u | xargs echo || true)
				small_note "cannot update pkg set(s): $PKG_SET_PROBLEMS"
			fi
		# only show the most severe problem, don't aggregate them
		elif $(grep -q "^Warning: rise of the jenkins job zombies has started again" $LOG) ; then