##// END OF EJS Templates
revsetbenchmark: support for running on other repo...
revsetbenchmark: support for running on other repo We add a -R/--repo option to run the benchmarks on another repository. This is very useful as some repository are bigger/more interesting than the mercurial one.

File last commit:

r21255:62a27498 default
r21549:ea3d75eb default
Show More
dockerrpm
14 lines | 395 B | text/plain | TextLexer
#!/bin/bash
BUILDDIR=$(dirname $0)
ROOTDIR=$(cd $BUILDDIR/..; pwd)
if which docker >> /dev/null ; then
DOCKER=docker
elif which docker.io >> /dev/null ; then
DOCKER=docker.io
fi
$DOCKER build --tag "hg-dockerrpm-$1" - < $BUILDDIR/docker/$1
$DOCKER run --rm -v $ROOTDIR:/hg "hg-dockerrpm-$1" bash -c \
"cp -a hg hg-build; cd hg-build; make clean local $1; cp build/$1/* /hg/build/$1/"