]> code.ossystems Code Review - openembedded-core.git/commit
scripts: add oe-build-perf-report script
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>
Fri, 31 Mar 2017 14:07:29 +0000 (17:07 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sat, 1 Apr 2017 07:20:26 +0000 (08:20 +0100)
commit3b25404f0f99b72f222bdca815929be1cf1cee35
tree1a0fe13f829e1b5474d018e1a81c77de50b1fc0d
parentb007eb12a80d81c2aa498941961df3f2899ece7e
scripts: add oe-build-perf-report script

A new tool for pretty-printing build perf test results stored in a Git
repository. The scripts is able to produce either simple plaintext
report showing the difference between two commits, or, an html report
that also displays trendcharts of the test results. The script uses
Jinja2 templates for generating HTML reports so it requires
python3-jinja2 to be installed on the system.

[YOCTO #10931]

Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/lib/build_perf/__init__.py [new file with mode: 0644]
scripts/lib/build_perf/html.py [new file with mode: 0644]
scripts/lib/build_perf/html/measurement_chart.html [new file with mode: 0644]
scripts/lib/build_perf/html/report.html [new file with mode: 0644]
scripts/lib/build_perf/report.py [new file with mode: 0644]
scripts/oe-build-perf-report [new file with mode: 0755]