From a3722c8457f22264c8d2850925addffb01e40e94 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Thu, 15 Oct 2015 10:43:44 +0000 Subject: reproducible: store in the db also the actual build host in stats_build, and rename the current "builder" field to "job", since it contains the jenkins job name and nummber --- bin/reproducible_html_packages.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/reproducible_html_packages.py') diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py index a178330a..ee35072c 100755 --- a/bin/reproducible_html_packages.py +++ b/bin/reproducible_html_packages.py @@ -211,7 +211,7 @@ def gen_suites_links(package, current_suite, current_arch): def gen_history_page(package): keys = ('build date', 'version', 'suite', 'architecture', 'result', - 'build duration', 'builder') + 'build duration', 'node1', 'node2', 'job') try: head = package.history[0] except IndexError: @@ -222,7 +222,7 @@ def gen_history_page(package): html += '{}'.format(i) html += '\n{tab}'.format(tab=tab) for record in package.history: - # huma formatting of build duration + # human formatting of build duration record['build duration'] = convert_into_hms_string( int(record['build duration'])) html += '\n{tab}\n{tab}{tab}'.format(tab=tab) -- cgit v1.2.3-54-g00ecf