Skip to content
Snippets Groups Projects
  • Raphaël Gomès's avatar
    26b57c2943d5
    Add script to sync results on takobasu. · 26b57c2943d5
    Raphaël Gomès authored
    From now on, takobasu will be the source of truth for running
    `asv publish`, so all other machines that run `asv run` will need to
    rsync their results over to takobasu, which will later deploy the changes
    on a timer.
    26b57c2943d5
    History
    Add script to sync results on takobasu.
    Raphaël Gomès authored
    From now on, takobasu will be the source of truth for running
    `asv publish`, so all other machines that run `asv run` will need to
    rsync their results over to takobasu, which will later deploy the changes
    on a timer.
main-bisect.sh 334 B
#!/bin/bash
#
# Script used on the main performance benchmark machine to run tests.
set -eox pipefail

ROOT=`dirname $0`

# source "${ROOT}"/../virtualenv/bin/activate
rm -rf "${ROOT}"/env/

./lib/before-check.sh

time HGRCPATH= taskset -c 2,3 asv find --save_results $@

# Sync results over to deploy server
"${ROOT}/sync_results.sh"