[Buildbot-commits] [buildbot/buildbot] aa44a5: Setup: quick hack to avoid downloading/installing ...
noreply at github.com
noreply at github.com
Sun Oct 3 21:42:22 UTC 2010
Branch: refs/heads/master
Home: http://github.com/buildbot/buildbot
Commit: aa44a548a36950a4dad8d3aab2da7909e8395b2e
http://github.com/buildbot/buildbot/commit/aa44a548a36950a4dad8d3aab2da7909e8395b2e
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/setup.py
Log Message:
-----------
Setup: quick hack to avoid downloading/installing requirements.
When building for a distro, having intermediate steps like requirements
auto-download is forbidden. Until I find some better method, I put an
env var "NO_INSTALL_REQS" to supress that behavior.
Commit: cb8120fd5dfbb65aea86756e379056b4e0520fd7
http://github.com/buildbot/buildbot/commit/cb8120fd5dfbb65aea86756e379056b4e0520fd7
Author: Dustin J. Mitchell <dustin at zmanda.com>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/docs/installation.texinfo
Log Message:
-----------
add docs for NO_INSTALL_REQS
Commit: fe8263e02a8961015033a839042dcd57ebe4f360
http://github.com/buildbot/buildbot/commit/fe8263e02a8961015033a839042dcd57ebe4f360
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/buildbot/schedulers/filter.py
Log Message:
-----------
change filter: have a repr()
Commit: dd20225ba587e283841d4842dd89f694bd1715ce
http://github.com/buildbot/buildbot/commit/dd20225ba587e283841d4842dd89f694bd1715ce
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/buildbot/changes/manager.py
M master/buildbot/db/connector.py
Log Message:
-----------
changes, connector: allow searching for latest change per branch
Commit: 3c7ee779d1a16eaa8d087d4d1a288b586950cec4
http://github.com/buildbot/buildbot/commit/3c7ee779d1a16eaa8d087d4d1a288b586950cec4
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/buildbot/status/web/step.py
Log Message:
-----------
web-status: have step.content(), stub
Commit: 0160f2765d41c375c5ff34f98d46422c3f05d7bd
http://github.com/buildbot/buildbot/commit/0160f2765d41c375c5ff34f98d46422c3f05d7bd
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/buildbot/status/web/build.py
A master/buildbot/status/web/templates/testresult.html
A master/buildbot/status/web/tests.py
Log Message:
-----------
web-status: implement test results page
The build page refers to the tests/ child, but this hadn't been implemented.
Commit: 0d587961b0d3c4329744018256612600425ee81d
http://github.com/buildbot/buildbot/commit/0d587961b0d3c4329744018256612600425ee81d
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/buildbot/status/builder.py
Log Message:
-----------
builder status: offer ordered set of the test results.
Since the test results are stored in a dictionary, their order of
appearance at the page would be arbitrary. Offer a sorted version.
Commit: c6e3fe47a3be550d501b111b817246dac7dcd9d1
http://github.com/buildbot/buildbot/commit/c6e3fe47a3be550d501b111b817246dac7dcd9d1
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/buildbot/status/web/build.py
M master/buildbot/status/web/builder.py
M master/buildbot/status/web/buildstatus.py
M master/buildbot/status/web/console.py
Log Message:
-----------
web-status: Disable caching of http pages
Since our data is volatile, we have to inform the browsers not to cache
our pages.
More to follow..
Commit: f8d972155fe7edd5ca0c030f5bad6a364dc0d5d4
http://github.com/buildbot/buildbot/commit/f8d972155fe7edd5ca0c030f5bad6a364dc0d5d4
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/buildbot/status/web/console.py
Log Message:
-----------
web-status: fix typo at console.py from previous commit
Commit: 2e22c0f336f3f7193588b8f7ba77ca71c8d068be
http://github.com/buildbot/buildbot/commit/2e22c0f336f3f7193588b8f7ba77ca71c8d068be
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/buildbot/status/web/buildstatus.py
Log Message:
-----------
buildstatus: fix typo about cache-control
Commit: cf09b3b9a08e8db291414eb9bd2c31137b20d455
http://github.com/buildbot/buildbot/commit/cf09b3b9a08e8db291414eb9bd2c31137b20d455
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/buildbot/status/mail.py
Log Message:
-----------
mail status: display invalid emails on logs
Helps debug why assertion on them fails.
Commit: d4bdf3f40f26390a31355ccc62215553bc20912c
http://github.com/buildbot/buildbot/commit/d4bdf3f40f26390a31355ccc62215553bc20912c
Author: P. Christeas <p_christ at hol.gr>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/buildbot/steps/master.py
Log Message:
-----------
MasterShellCommand: support env and usePTY, fixes calls.
In our case, we wanted to run ssh from the master, so needed the environ.
Pass those values to the spawnProcess.
Note: this commit changes the default empty environment to the parent
process's. If you still want an empty environ, specify env={} as an
argument.
Commit: ac541c11a62a6f085606905c8e9f2b5edac1066d
http://github.com/buildbot/buildbot/commit/ac541c11a62a6f085606905c8e9f2b5edac1066d
Author: Dustin J. Mitchell <dustin at zmanda.com>
Date: 2010-10-03 (Sun, 03 Oct 2010)
Changed paths:
M master/NEWS
M master/docs/cfg-buildsteps.texinfo
Log Message:
-----------
add docs and NEWS for MasterShellCommand env argument
More information about the Commits
mailing list