From: Ross Burton Date: Mon, 30 Jul 2012 12:18:07 +0000 (+0100) Subject: buildhistory: reduce the numeric delta to 10% X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a71dfcc33819aaabe7e156b6cfefe02e7fb63e8c;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git buildhistory: reduce the numeric delta to 10% (From OE-Core rev: f6effbf62351761430438cfcce285c982271239c) Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oe/buildhistory_analysis.py b/meta/lib/oe/buildhistory_analysis.py index 7dec6c1342c..a5a607e30bf 100644 --- a/meta/lib/oe/buildhistory_analysis.py +++ b/meta/lib/oe/buildhistory_analysis.py @@ -24,7 +24,7 @@ numeric_fields = ['PKGSIZE', 'IMAGESIZE'] # Fields to monitor monitor_fields = ['RDEPENDS', 'RRECOMMENDS', 'PACKAGES', 'FILELIST', 'PKGSIZE', 'IMAGESIZE', 'PKG', 'PKGE', 'PKGV', 'PKGR'] # Percentage change to alert for numeric fields -monitor_numeric_threshold = 20 +monitor_numeric_threshold = 10 # Image files to monitor (note that image-info.txt is handled separately) img_monitor_files = ['installed-package-names.txt', 'files-in-image.txt'] # Related context fields for reporting (note: PE, PV & PR are always reported for monitored package fields)