summaryrefslogtreecommitdiff
path: root/setup.sh
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-08 11:35:45 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-08 11:35:45 +0100
commit40a5c446c3062adf4481782ced1be4710efaab56 (patch)
tree27fff41d6623b451bae826c43318308c75fdcfac /setup.sh
parentd4fce543b3e229ec2cb596aa1a026efb1a807655 (diff)
downloadorchestration-40a5c446c3062adf4481782ced1be4710efaab56.tar.gz
Make setup.sh more verbose
Diffstat (limited to 'setup.sh')
-rw-r--r--setup.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/setup.sh b/setup.sh
index ac159db..05dddfc 100644
--- a/setup.sh
+++ b/setup.sh
@@ -1,19 +1,27 @@
#!/bin/sh
set -e
+echo "Orchestration setup starting"
# create master
+echo "Buildbot Master: Creating virtual environment"
virtualenv --no-site-packages orchenv-master
cd orchenv-master
+echo "Buildbot Master: Installing dependencies"
./bin/pip install buildbot
./bin/buildbot create-master -r master
cp ../source/master.cfg master/master.cfg
# create slave
cd ..
+echo "Buildbot Local Slave: Creating virtual environment"
virtualenv --no-site-packages orchenv-slave
cd orchenv-slave
+echo "Buildbot Local Slave: Installing dependencies"
./bin/pip install buildbot-slave
./bin/buildslave create-slave -r slave localhost:9989 example-slave pass
# setup bottlerock
cd ..
+echo "Bottlerock: Creating virtual environment"
virtualenv --no-site-packages bottlerock
cd bottlerock
+echo "Bottlerock: Installing dependencies"
./bin/pip install buildbot bottle
+echo "Setup Complete"