Changes between Version 8 and Version 9 of BuildBot
- Timestamp:
- Dec 4, 2009, 11:51:46 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
BuildBot
v8 v9 10 10 Please ensure that you are familiar with [http://webkit.org/building/build.html building WebKit] from source so that problems getting the slave up and running can be easily troubleshooted. The machine will need to have: 11 11 12 * Xcode 2.4 (or greater) installed.13 * Subversion installed and accessible on the `PATH`.14 * the Ahem font installed.15 * If possible, set the computer to not go to sleep (under Energy Saver in System Preferences)16 12 17 === Installing !BuildBot and Dependencies ===13 === General requirements === 18 14 15 1. Subversion installed and accessible on the `PATH`. 16 1. Set the computer to not go to sleep (under Energy Saver in System Preferences) 19 17 1. Install Twisted 20 18 1. Download Twisted 2.5.0 from http://tmrc.mit.edu/mirror/twisted/Twisted/2.5/Twisted-2.5.0.tar.bz2. … … 27 25 1. In a shell, change into the `buildbot` directory and run `sudo python setup.py install` 28 26 27 28 === Mac requirements === 29 30 1. Everything in http://webkit.org/building/tools.html 31 1. The Ahem font installed. (Reference?) 32 1. Add `/System/Library/Frameworks/Python.framework/Versions/2.3/bin/` to your shell's `PATH` variable. 33 34 35 === Win requirements === 36 37 1. Everything in http://webkit.org/building/tools.html 38 1. For the cygwin install, the actual minimal requirements are: apache, bc, bison, curl, flex, gcc, gperf, make, patch, perl, python, readline, subversion, unzip, zip. 39 1. From the instructions, save the file WebKitSupportLibrary.zip in a directory (e.g. `c:\deps`) and `set WEBKITSUPPORTLIBRARIESZIPDIR=c:\deps` 40 1. [http://apple.com/safari/download Safari 4 and QuickTime] 41 1. [http://java.com/download Java] 42 1. Set the following registry key: 43 {{{ 44 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug] 45 "Auto"="0" 46 }}} 47 48 49 === GTK requirements === 50 51 1. See BuildingGtk 52 53 54 === QT requirements === 55 56 1. See QtWebKit 57 58 29 59 === Configuring a Build Slave === 30 60 31 61 1. Open a shell inside a directory suitable to keep the build slaves copy of the !WebKit repository. 32 1. Add `/System/Library/Frameworks/Python.framework/Versions/2.3/bin/` to your shell's `PATH` variable.33 62 1. Run `buildbot create-slave WebKit-BuildSlave build.webkit.org:9989 [username] [password]` 34 63 1. Change to the `WebKit-BuildSlave` directory 35 64 1. Rename `Makefile.sample` to `Makefile` 36 65 1. Edit `info/admin` and `info/host` to contain basic contact information and information about the build slave. 37 1. Run `make start` to start the build slave. Logging information can be viewed by running make log.66 1. Run `make start` to start the build slave. Logging information can be viewed by running `make log`. 38 67 1. Generate an ssh (dsa) key pair and send `id_dsa.pub` to bdash to allow the machine to upload build results. 39 68 1. Once you recieve login information from bdash, ssh once to buildbot master, thus adding an entry to your knownhosts file (prevents upload script from later hanging). 40 1. On Windows, set the following registry key:41 {{{42 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug]43 "Auto"="0"44 }}}