summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Holland <william.holland@codethink.co.uk>2015-09-28 09:03:36 +0100
committerWill Holland <william.holland@codethink.co.uk>2015-09-28 09:03:36 +0100
commit7d9d4f683a49d9a8feaa353db5364ab446098abd (patch)
tree2a47a4ec2ffa47831597baa55d37d14f107bbcf7
parent1d9acea73e92201340015e115292419325257c29 (diff)
downloadorchestration-7d9d4f683a49d9a8feaa353db5364ab446098abd.tar.gz
Move yaml to being installed in bottlerock env
This is where ciat_deployer is being run
-rw-r--r--setup.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.sh b/setup.sh
index c96df68..0e7daf2 100644
--- a/setup.sh
+++ b/setup.sh
@@ -6,7 +6,7 @@ echo "Buildbot Master: Creating virtual environment"
virtualenv --no-site-packages orchenv-master
cd orchenv-master
echo "Buildbot Master: Installing dependencies"
-./bin/pip install buildbot pyyaml
+./bin/pip install buildbot
./bin/buildbot create-master -r master
cp ../source/master.cfg master/master.cfg
# create slave
@@ -23,5 +23,5 @@ echo "Bottlerock: Creating virtual environment"
virtualenv --no-site-packages bottlerock
cd bottlerock
echo "Bottlerock: Installing dependencies"
-./bin/pip install buildbot bottle
+./bin/pip install buildbot bottle pyyaml
echo "Setup Complete"