diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2017-04-07 14:51:39 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-04-10 23:00:44 +0100 |
commit | 60658499c2ed0c92ff3be9a67e6950314873a96f (patch) | |
tree | 1312101b36b4c6d1827693f3079b4dd222d90cf3 /scripts/contrib/build-perf-test-wrapper.sh | |
parent | 343cc9646d109eeb7409f7bbfb61002b6fcce126 (diff) | |
download | poky-60658499c2ed0c92ff3be9a67e6950314873a96f.tar.gz |
build-perf-test-wrapper.sh: support extra args for email script
Make it possible to provide (extra) command line arguments to the
oe-build-perf-test-email script via a new environment variable
OE_BUILD_PERF_REPORT_EMAIL_EXTRA_ARGS.
(From OE-Core rev: 9cdd4ea5e006fe326bdf39ea437b9ba61a66b778)
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/contrib/build-perf-test-wrapper.sh')
-rwxr-xr-x | scripts/contrib/build-perf-test-wrapper.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/contrib/build-perf-test-wrapper.sh b/scripts/contrib/build-perf-test-wrapper.sh index 49bc298c5b..3da32532be 100755 --- a/scripts/contrib/build-perf-test-wrapper.sh +++ b/scripts/contrib/build-perf-test-wrapper.sh | |||
@@ -193,7 +193,7 @@ if [ -n "$results_repo" ]; then | |||
193 | os_name=`get_os_release_var PRETTY_NAME` | 193 | os_name=`get_os_release_var PRETTY_NAME` |
194 | oe-build-perf-report -r "$results_repo" > report.txt | 194 | oe-build-perf-report -r "$results_repo" > report.txt |
195 | oe-build-perf-report -r "$results_repo" --html > report.html | 195 | oe-build-perf-report -r "$results_repo" --html > report.html |
196 | "$script_dir"/oe-build-perf-report-email.py --to "$email_to" --subject "Build Perf Test Report for $os_name" --text report.txt --html report.html | 196 | "$script_dir"/oe-build-perf-report-email.py --to "$email_to" --subject "Build Perf Test Report for $os_name" --text report.txt --html report.html "${OE_BUILD_PERF_REPORT_EMAIL_EXTRA_ARGS[@]}" |
197 | fi | 197 | fi |
198 | fi | 198 | fi |
199 | 199 | ||