Skip to content
Snippets Groups Projects
Commit c8286cbc authored by Holger Levsen's avatar Holger Levsen
Browse files

trbo health check: detect python deprecation warning


Signed-off-by: default avatarHolger Levsen <holger@layer-acht.org>
parent b63b7947
No related branches found
No related tags found
No related merge requests found
......@@ -220,6 +220,8 @@ for JOB_NAME in $(ls -1d reproducible_* | sort ) ; do
small_note "diffoscope detected differences in the images"
elif $(grep -E -q "UserWarning: .* is running against .* this may cause problems" $LOG) ; then
small_note "python library warning during build"
elif $(grep -E -q "DeprecationWarning: The distutils package is deprecated and slated for removal" $LOG) ; then
small_note "python deprecation warning during build"
elif $(grep -E -q "^[a-z]+.cpp:[0-9]+:[0-9]+: warning:" $LOG) ; then
small_note "compiler warning during build"
elif $(grep -q "^Warning: The following builds have failed due to diffoscope schroot problems and will be rescheduled now:" $LOG) ; then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment