mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00
build-perf-test-wrapper.sh: make archive dir configurable
Add new command line argument '-a' that can be used to define the directory where results (tarballs) are archived. Giving an empty string disables archiving which makes sense if you store results in Git. (From OE-Core rev: d53cf92847aa80724be4412801c993948a09cd27) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
a34fd3cf27
commit
ee4c5f6171
|
@ -25,6 +25,8 @@ Usage: $script [-h] [-c COMMITISH] [-C GIT_REPO]
|
||||||
|
|
||||||
Optional arguments:
|
Optional arguments:
|
||||||
-h show this help and exit.
|
-h show this help and exit.
|
||||||
|
-a ARCHIVE_DIR archive results tarball here, give an empty string to
|
||||||
|
disable tarball archiving
|
||||||
-c COMMITISH test (checkout) this commit
|
-c COMMITISH test (checkout) this commit
|
||||||
-C GIT_REPO commit results into Git
|
-C GIT_REPO commit results into Git
|
||||||
EOF
|
EOF
|
||||||
|
@ -32,13 +34,16 @@ EOF
|
||||||
|
|
||||||
|
|
||||||
# Parse command line arguments
|
# Parse command line arguments
|
||||||
|
archive_dir=~/perf-results/archives
|
||||||
commitish=""
|
commitish=""
|
||||||
results_repo=""
|
results_repo=""
|
||||||
while getopts "hc:C:" opt; do
|
while getopts "ha:c:C:" opt; do
|
||||||
case $opt in
|
case $opt in
|
||||||
h) usage
|
h) usage
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
|
a) archive_dir=`realpath "$OPTARG"`
|
||||||
|
;;
|
||||||
c) commitish=$OPTARG
|
c) commitish=$OPTARG
|
||||||
;;
|
;;
|
||||||
C) results_repo=`realpath "$OPTARG"`
|
C) results_repo=`realpath "$OPTARG"`
|
||||||
|
@ -112,13 +117,14 @@ echo -ne "\n"
|
||||||
|
|
||||||
cat "$globalres_log"
|
cat "$globalres_log"
|
||||||
|
|
||||||
|
if [ -n "$archive_dir" ]; then
|
||||||
echo -ne "\n\n-----------------\n"
|
echo -ne "\n\n-----------------\n"
|
||||||
echo "Archiving results dir..."
|
echo "Archiving results in $archive_dir"
|
||||||
archive_dir=~/perf-results/archives
|
|
||||||
mkdir -p "$archive_dir"
|
mkdir -p "$archive_dir"
|
||||||
results_basename=`basename "$results_dir"`
|
results_basename=`basename "$results_dir"`
|
||||||
results_dirname=`dirname "$results_dir"`
|
results_dirname=`dirname "$results_dir"`
|
||||||
tar -czf "$archive_dir/`uname -n`-${results_basename}.tar.gz" -C "$results_dirname" "$results_basename"
|
tar -czf "$archive_dir/`uname -n`-${results_basename}.tar.gz" -C "$results_dirname" "$results_basename"
|
||||||
|
fi
|
||||||
|
|
||||||
rm -rf "$build_dir"
|
rm -rf "$build_dir"
|
||||||
rm -rf "$results_dir"
|
rm -rf "$results_dir"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user