[Buildbot-commits] site ChangeLog, 1.43, 1.44 index.html, 1.70, 1.71 manual-CVS.html, 1.5, 1.6
Brian Warner
warner at users.sourceforge.net
Mon Aug 7 00:14:30 UTC 2006
Update of /cvsroot/buildbot/site
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv17209
Modified Files:
ChangeLog index.html manual-CVS.html
Log Message:
updates
Index: ChangeLog
===================================================================
RCS file: /cvsroot/buildbot/site/ChangeLog,v
retrieving revision 1.43
retrieving revision 1.44
diff -u -d -r1.43 -r1.44
--- ChangeLog 31 Jul 2006 08:36:52 -0000 1.43
+++ ChangeLog 7 Aug 2006 00:14:27 -0000 1.44
@@ -1,3 +1,8 @@
+2006-08-06 Brian Warner <warner at lothar.com>
+
+ * index.html: added Cheesecake, ReactOS
+ * manual-CVS.html: updated
+
2006-07-31 Brian Warner <warner at lothar.com>
* manual-CVS.html: updated, added images
Index: index.html
===================================================================
RCS file: /cvsroot/buildbot/site/index.html,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -d -r1.70 -r1.71
--- index.html 12 Jul 2006 21:36:32 -0000 1.70
+++ index.html 7 Aug 2006 00:14:27 -0000 1.71
@@ -520,7 +520,36 @@
composition of the highest energy cosmic rays, and is operated by a
collaboration of about 300 physicists (running code on quite a few
different platforms)". </td>
-</tr>
+ </tr>
+
+ <tr>
+ <td>Cheesecake</td>
+ <td><a href="http://agilistas.org:8888"/>
+ <img src="buildbot.png" alt="Buildbot" height="16" width="16"></a>
+ </td>
+ <td><a href="http://pycheesecake.org/">
+ <img src="home.png" alt="home page" height="16" width="16"></a>
+ </td>
+ <td>Michal Kwiatkowski reports that the pycheesecake project is using
+ a buildbot to run all their functional and unit tests. This project
+ ranks many python packages according to such quality metrics like
+ pylint scores, percentage of documented methods, and
+ downloadability.</td>
+ </tr>
+
+ <tr>
+ <td>ReactOS</td>
+ <td><a href="http://reactos.dyndns.org:8010"/>
+ <img src="buildbot.png" alt="Buildbot" height="16" width="16"></a>
+ </td>
+ <td><a href="http://www.reactos.org/">
+ <img src="home.png" alt="home page" height="16" width="16"></a>
+ </td>
+ <td>Aleksey Bragin has set up a buildbot for the ReactOS project, to
+ automate the creation of installation CD images. This project is
+ dedicated to creating a GPLed windows-compatible operating system
+ from the ground up.</td>
+ </tr>
<tr>
<td></td>
@@ -574,5 +603,5 @@
href="http://creativecommons.org/licenses/by-sa/2.5/">Creative Commons
Attribution Share-Alike license</a>.</font></p>
-<!-- hhmts start -->Last modified: Wed Jul 12 14:32:41 PDT 2006 <!-- hhmts end -->
+<!-- hhmts start -->Last modified: Sun Aug 6 17:11:15 PDT 2006 <!-- hhmts end -->
</body> </html>
Index: manual-CVS.html
===================================================================
RCS file: /cvsroot/buildbot/site/manual-CVS.html,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- manual-CVS.html 31 Jul 2006 08:36:52 -0000 1.5
+++ manual-CVS.html 7 Aug 2006 00:14:27 -0000 1.6
@@ -2765,7 +2765,22 @@
<p>Note that using any Manhole requires that the TwistedConch package be
installed, and that you be using Twisted version 2.0 or later.
-<div class="node">
+ <p>The buildmaster's SSH server will use a different host key than the
+normal sshd running on a typical unix host. This will cause the ssh
+client to complain about a “host key mismatch”, because it does not
+realize there are two separate servers running on the same host. To
+avoid this, use a clause like the following in your <samp><span class="file">.ssh/config</span></samp>
+file:
+
+<pre class="example"> Host remotehost-buildbot
+ HostName remotehost
+ HostKeyAlias remotehost-buildbot
+ Port 9999
+ # use 'user' if you use PasswordManhole and your name is not 'admin'.
+ # if you use AuthorizedKeysManhole, this probably doesn't matter.
+ User admin
+</pre>
+ <div class="node">
<p><hr>
<a name="Getting-Source-Code-Changes"></a>
Next: <a rel="next" accesskey="n" href="#Build-Process">Build Process</a>,
@@ -3789,8 +3804,25 @@
specifies the command to be run
<br><dt><code>env</code><dd>a dictionary of environment strings which will be added to the child
-command's environment.
+command's environment. For example, to run tests with a different i18n
+language setting, you might use
+
+ <pre class="example"> s(ShellCommand, command=["make", "test"],
+ env={'LANG': 'fr_FR'})
+ </pre>
+ <p>These variable settings will override any existing ones in the
+buildslave's environment. The exception is PYTHONPATH, which is merged
+with (actually prepended to) any existing $PYTHONPATH setting. The
+value is treated as a list of directories to prepend, and a single
+string is treated like a one-item list. For example, to prepend both
+<samp><span class="file">/usr/local/lib/python2.3</span></samp> and <samp><span class="file">/home/buildbot/lib/python</span></samp>
+to any existing $PYTHONPATH setting, you would do something like the
+following:
+ <pre class="example"> s(ShellCommand, command=["make", "test"],
+ env={'PYTHONPATH': ["/usr/local/lib/python2.3",
+ "/home/buildbot/lib/python"] })
+ </pre>
<br><dt><code>want_stdout</code><dd>if False, stdout from the child process is discarded rather than being
sent to the buildmaster for inclusion in the step's LogFile.
More information about the Commits
mailing list