diff options
author | varac <varacanero@zeromail.org> | 2017-04-06 11:28:38 +0200 |
---|---|---|
committer | drebs <drebs@leap.se> | 2017-07-03 14:19:47 -0300 |
commit | ea14af6c87f05ba70c30de9b664aac9e192c8f0e (patch) | |
tree | ea4f7a033850da40d3df87c8ecab67c76aaed761 | |
parent | 2dd7605d4711d57731447361864c6958657c67b7 (diff) |
[test] Show date and commit info
-rwxr-xr-x | benchmark-all-commits.sh | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/benchmark-all-commits.sh b/benchmark-all-commits.sh index bed53cc0..cde4f9af 100755 --- a/benchmark-all-commits.sh +++ b/benchmark-all-commits.sh @@ -19,9 +19,13 @@ set -e while /bin/true do - echo -e '\n\n\n\n\n' - + commit_id=$(git rev-parse HEAD) + echo -e '\n\n\n\n\n' + echo -e "\e[34m$(date): Starting benchmarking of commit ${commit_id:0:8}, which is $(git rev-list --count ${commit_id}..origin/master) commits back from master:\e[0m" + echo + git show | head -6 + echo # Option 1: Run couchdb + tox localy - dirty! # curl -s localhost:5984 || exit 1 @@ -34,7 +38,13 @@ do # Option 2: Run couchdb + tox in docker container using gitlab-runner git checkout origin/benchmark-all-commits .gitlab-ci.yml - gitlab-runner exec docker benchmark --env PYTEST_OPTS="$PYTEST_OPTS" --env HOST_HOSTNAME="$(hostname)" + time gitlab-runner exec docker benchmark --env PYTEST_OPTS="$PYTEST_OPTS" --env HOST_HOSTNAME="$(hostname)" + echo + echo -e "\e[34m$(date): Finished benchmarking of commit ${commit_id:0:8}, which is $(git rev-list --count ${commit_id}..origin/master) commits back from master:\e[0m" + echo + git show | head -6 + echo + git reset HEAD .gitlab-ci.yml git checkout .gitlab-ci.yml git checkout HEAD^ |