Changes between Version 4 and Version 5 of SettingUpBuildslave


Ignore:
Timestamp:
07/23/10 09:51:00 (14 years ago)
Author:
Samuli Seppänen
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SettingUpBuildslave

    v4 v5  
    3030 1. If you want to automatically build packages (e.g. deb/rpm) for your platform, you need to be able to do it manually first. Consult your OS'es documentation for more details.
    3131 1. [http://buildbot.net/buildbot/docs/0.7.12/#Requirements Install buildbot requirements].
    32  1. Download and install buildbot using one of the methods described [http://buildbot.net/trac/wiki/DownloadInstall here]. More instructions are available [http://buildbot.net/buildbot/docs/0.7.12/#Installation here]. You should install Buildbot 0.7.12 which the ''buildmaster'' is using.
     32 1. Download and install buildbot using one of the methods described [http://buildbot.net/trac/wiki/DownloadInstall here]. More instructions are available [http://buildbot.net/buildbot/docs/0.7.12/#Creating-a-buildslave here]. You should install Buildbot 0.7.12 which the ''buildmaster'' is using.
    3333
    3434
    3535== Installing buildslave using easy_install ==
    3636
    37 Probably easiest way is to install buildbot is by using [http://pypi.python.org/pypi/setuptools easy_install] if that's available on your platform. This will keep buildslave isolated from your OS'es package management and take care of dependencies for you.
     37Probably easiest way is to install buildbot is by using [http://pypi.python.org/pypi/setuptools easy_install] if that's available on your platform. This will keep buildslave isolated from your OS'es package management and take care of dependencies for you. It is easiest (but [http://peak.telecommunity.com/DevCenter/EasyInstall#custom-installation-locations not necessary) to run ''setuptools'' as root:
    3838
    3939
     40First switch to root account, e.g. using sudo or su:
     41
     42{{{
     43$ sudo -s
     44}}}
     45
     46Next test that easy_install should work as expected:
     47
     48{{{
     49easy_install -n buildbot==0.7.12
     50}}}
     51
     52If all went well, install buildbot for real:
     53
     54{{{
     55easy_install buildbot==0.7.12
     56}}}