diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2017-02-03 19:53:55 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-02-15 20:06:27 -0800 |
commit | 3d8a1df37407686ed699485c37c8517f1d79755d (patch) | |
tree | 939b9660a609ee2334b85e43189a6984776c22fa /scripts | |
parent | 995cb3bf2b3303067828a1358051e5e11caad843 (diff) | |
download | openembedded-core-contrib-3d8a1df37407686ed699485c37c8517f1d79755d.tar.gz |
build-perf-test-wrapper.sh: use oe-git-archive
Start to use the new helper script for archiving results data in Git.
[YOCTO #10582]
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/contrib/build-perf-test-wrapper.sh | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/scripts/contrib/build-perf-test-wrapper.sh b/scripts/contrib/build-perf-test-wrapper.sh index a4c19290a7f..7788bb1d1a2 100755 --- a/scripts/contrib/build-perf-test-wrapper.sh +++ b/scripts/contrib/build-perf-test-wrapper.sh @@ -48,8 +48,7 @@ while getopts "ha:c:C:w:" opt; do ;; c) commitish=$OPTARG ;; - C) results_repo=`realpath "$OPTARG"` - commit_results=("--commit-results" "$results_repo") + C) results_repo=`realpath -s "$OPTARG"` ;; w) base_dir=`realpath "$OPTARG"` ;; @@ -130,10 +129,17 @@ fi # Run actual test script oe-build-perf-test --out-dir "$results_dir" \ --globalres-file "$globalres_log" \ - --lock-file "$base_dir/oe-build-perf.lock" \ - "${commit_results[@]}" \ - --commit-results-branch "{tester_host}/{git_branch}/$machine" \ - --commit-results-tag "{tester_host}/{git_branch}/$machine/{git_commit_count}-g{git_commit}/{tag_num}" + --lock-file "$base_dir/oe-build-perf.lock" + +# Commit results to git +if [ -n "$results_repo" ]; then + echo -e "\nArchiving results in $results_repo" + oe-git-archive \ + --git-dir "$results_repo" \ + --branch-name "{hostname}/{branch}/{machine}" \ + --tag-name "{hostname}/{branch}/{machine}/{commit_count}-g{commit}/{tag_number}" \ + "$results_dir" +fi case $? in 1) echo "ERROR: oe-build-perf-test script failed!" |