diff options
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/speed-test.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/speed-test.sh b/tools/speed-test.sh new file mode 100755 index 00000000..0139a11d --- /dev/null +++ b/tools/speed-test.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +set -e + +cd ~/src/ledger +/bin/rm -fr ~/Products/ledger/opt +./acprep --no-python -j16 opt make check + +COMMIT=$(git describe --long --all) + +SPEEDS=$(./acprep --no-python -j16 opt make speedtest 2>&1 \ + | grep "Finished executing command" \ + | awk '{print $1}' \ + | xargs) + +echo $COMMIT,$(echo $SPEEDS | sed 's/ /,/g') >> speed.log + +exit 0 |