From 63cb70be72f48fcf25fff9738536d2251ff4cafd Mon Sep 17 00:00:00 2001 From: Jon Mason Date: Fri, 14 Jan 2022 09:15:17 -0500 Subject: [PATCH] ci: ignore distutil warnings distutil warnings are causing CI to fail. This is caused by changes outside of meta-arm, and are not relevant for anything present in meta-arm. Temporarily ignore these until they can be handled upstream. Signed-off-by: Jon Mason --- ci/check-warnings | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ci/check-warnings b/ci/check-warnings index 89ae955d..721f198b 100755 --- a/ci/check-warnings +++ b/ci/check-warnings @@ -7,7 +7,8 @@ set -e -u LOGFILE=$1 -LINES=$(grep --invert-match "attempting MIRRORS if available" $LOGFILE | wc -l) +LINES=$(grep --invert-match -e "attempting MIRRORS if available" -e "distutils-common-base.bbclass is deprecated" -e "distutils3.bbclass is deprecated" $LOGFILE | wc -l) + if test "$LINES" -ne 0; then echo ============================== echo The build had warnings/errors: