ReferencePlatforms/BuildBot/Win32: Difference between revisions

From MozillaWiki
Jump to navigation Jump to search
(added botrunner script)
(Replaced content with 'This page was obsolete and has been removed. Details on our win32 reference platform can be found here: [https://wiki.mozilla.org/ReferencePlatforms/Win32 https://wiki.mozil...')
 
(17 intermediate revisions by 4 users not shown)
Line 1: Line 1:
= Buildbot Reference Install Instructions - Win32 =
This page was obsolete and has been removed. Details on our win32 reference platform can be found here:  [https://wiki.mozilla.org/ReferencePlatforms/Win32 https://wiki.mozilla.org/ReferencePlatforms/Win32].
This document describes how to create a Buildbot reference install on Windows. You will need administrative privileges to complete this install.
 
== Prerequisites ==
* [[ReferencePlatforms/Win32 | Base win32 reference install]]
== Install Python ==
Download and install Python 2.4 from [http://www.python.org/ftp/python/2.4.4/python-2.4.4.msi here]
Install it in "D:\buildtools\python24"
8b1517fdbf287d402ac06cc809abfad6 python-2.4.4.msi
 
== Install Python-Twisted ==
Download and install Python-Twisted 2.4 from [http://tmrc.mit.edu/mirror/twisted/Twisted/2.4/Twisted_NoDocs-2.4.0.win32-py2.4.exe here]. This will also install the Zope-Interface package.
  87759eed35ddaed617e128fd6f34ea7c Twisted_NoDocs-2.4.0.win32-py2.4.exe
 
== Install Python Win32 extensions ==
Download and install the Python win32 extensions from [http://superb-west.dl.sourceforge.net/sourceforge/pywin32/pywin32-210.win32-py2.4.exe here]
16d8d23fa6653bead0ab4d99b9bbfe23 pywin32-210.win32-py2.4.exe
 
== Add Python to the path ==
Control Panel -> System -> Advanced -> Environment Variables. Find 'PATH' in the list of System variables and append ";d:\buildtools\python24;d:\buildtools\python24\scripts"
 
== Install Buildbot ==
Note: cvs.mozilla.org may need to be cvs-mirror.mozilla.org.
Make sure to use the Win32 Python to install Buildbot.
cvs -d:pserver:anonymous@cvs.mozilla.org:/cvsroot co mozilla/tools/buildbot
cd mozilla/tools/buildbot
python setup.py build
python setup.py install
Edit the 'buildbot.bat' file in d:\buildtools\python24\scripts:
@python d:\buildtools\python24\scripts\buildbot %*
 
== Install the Botrunner script ==
First, get the MozBuild module and put it in d:\buildtools\python24\Lib\site-packages
cvs -d:pserver:anonymous@cvs.mozilla.org:/cvsroot co mozilla/tools/MozBuild
 
Now get the botrunner script and put it in d:\buildtools\python24\scripts
cvs -d:pserver:anonymous@cvs.mozilla.org:/cvsroot co mozilla/tools/botrunner.py

Latest revision as of 09:50, 10 July 2009

This page was obsolete and has been removed. Details on our win32 reference platform can be found here: https://wiki.mozilla.org/ReferencePlatforms/Win32.