470
edits
m (→autoconf213) |
mNo edit summary |
||
| Line 23: | Line 23: | ||
sudo make install | sudo make install | ||
=== VirtualEnv === | |||
'''need to find notes on this''' | |||
=== Buildbot === | |||
==== Twisted ==== | |||
cd ~/Downloads | |||
curl -O http://tmrc.mit.edu/mirror/twisted/Twisted/2.4/Twisted-2.4.0.tar.bz2 | |||
cd ~/src | |||
virtualenv buildbot | |||
cd buildbot | |||
source bin/activate | |||
tar xzf ~/Downloads/Twisted-2.4.0.tar.bz2 | |||
cd Twisted-2.4.0 | |||
python setup.py install | |||
==== buildbot ==== | |||
cd ~/src/buildbot | |||
source bin/activate | |||
hg clone http://hg.mozilla.org/build/buildbot | |||
cd buildbot | |||
python setup.py install | |||
==== creating buildbot master ==== | |||
'''Note''': need to finish documenting the master and slave config changes for local setups | |||
cd ~/src/buildbot | |||
source bin/activate | |||
buildbot create-master master | |||
buildbot create-slave slave localhost:9010 moz-slave-name | |||
=== GnuPG v2 === | === GnuPG v2 === | ||
edits