view INSTALL.sh @ 192:53970e50639e

disable internal tests on mozmill until we get a manifest
author Jeff Hammel <jhammel@mozilla.com>
date Wed, 02 Feb 2011 11:48:39 -0800
parents 13a2a66b1c41
children 042507e2bbe3
line wrap: on
line source

#!/usr/bin/bash

# installation script for autobot, the A*Team buildbot
# install using
# curl http://k0s.org/mozilla/hg/autobot/raw-file/tip/INSTALL.sh | bash

REPO='http://k0s.org/mozilla/hg/autobot'

# destination
DEST='autobot' # name of the virtualenv
if [ "$#" != "0" ]
then
    DEST=$1
fi

# make a virualenv
if which virtualenv
then
    virtualenv ${DEST}
else
    curl https://bitbucket.org/ianb/virtualenv/raw/tip/virtualenv.py | python - ${DEST}
fi
cd ${DEST}
. bin/activate # linux only

# checkout the repository
mkdir src
cd src
hg clone ${REPO}
cd autobot
python setup.py develop

# now you can run `create-autobot` to get a testing bot!