From 817b1088a5310a7e1c3d39dbaaf3e9830b2b33a0 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Fri, 3 Feb 2012 16:01:35 +0000 Subject: [PATCH] Work in progress on integrating build server --- .gitignore | 1 + README.buildserver | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 README.buildserver diff --git a/.gitignore b/.gitignore index 0fb1737765..24ea4368b5 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ tmp/ build_*/ *~ *.pyc +buildserver.box diff --git a/README.buildserver b/README.buildserver new file mode 100644 index 0000000000..a28bab97a6 --- /dev/null +++ b/README.buildserver @@ -0,0 +1,17 @@ + +Setting up a build server: + +1. Install VirtualBox, vagrant and vagrant-snap +2. In the buildserver directory, run 'vagrant up'. Will take a long time. +3. Log in with 'vagrant ssh' +4. Check it all looks ok, then 'sudo shutdown -h now' +5. Back in the main directory, run 'VBoxManage listvms' look for + buildserver_xxxx +6. Run 'vagrant package --base buildserver_xxxx --output buildserver.box'. + Will take a while. +7. You should now have a new 'buildserver.box' + +You should now be able to use the --server option on build.py and builds will +take place in the clean, secure, isolated environment of a fresh virtual +machine for each app built. +