[oe-commits] [openembedded-core] 02/02: oe-build-perf-report: Fix missing buildstats comparisions

git at git.openembedded.org git at git.openembedded.org
Mon Feb 11 17:52:52 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 2dbbf598192ae2b3aa488df042f56aa6c6634a00
Author: Richard Purdie <richard.purdie at linuxfoundation.org>
AuthorDate: Mon Feb 11 17:45:25 2019 +0000

    oe-build-perf-report: Fix missing buildstats comparisions
    
    Integers were being compared to strings leading to missing buildstats comparision
    data. Fix this.
    
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 scripts/oe-build-perf-report | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/oe-build-perf-report b/scripts/oe-build-perf-report
index b3c7698..af4f046 100755
--- a/scripts/oe-build-perf-report
+++ b/scripts/oe-build-perf-report
@@ -427,8 +427,8 @@ def print_html_report(data, id_comp, buildstats):
 
             # Compare buildstats
             bs_key = test + '.' + meas
-            rev = metadata['commit_num']['value']
-            comp_rev = metadata['commit_num']['value_old']
+            rev = str(metadata['commit_num']['value'])
+            comp_rev = str(metadata['commit_num']['value_old'])
             if (rev in buildstats and bs_key in buildstats[rev] and
                     comp_rev in buildstats and bs_key in buildstats[comp_rev]):
                 new_meas['buildstats'] = BSSummary(buildstats[comp_rev][bs_key],

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list