Branch: refs/heads/nine
Home: https://github.com/buildbot/buildbot
Commit: a24972f01562164a5bb6c1fec887b8cfa9076182
https://github.com/buildbot/buildbot/commit/a24972f01562164a5bb6c1fec887b8cfa9076182
Author: Elmir Jagudin <[email protected]>
Date: 2013-04-07 (Sun, 07 Apr 2013)
Changed paths:
M slave/buildslave/scripts/runner.py
Log Message:
-----------
removed unused feature in buildslave.scripts.runner.stop()
No code calls stop() with wait flag disabled. Remove wait parameter,
and changed stop() to always wait for the process to finish.
Commit: 10dceeb46689cc59986d8fa6e8b12d37bf06a2b8
https://github.com/buildbot/buildbot/commit/10dceeb46689cc59986d8fa6e8b12d37bf06a2b8
Author: Elmir Jagudin <[email protected]>
Date: 2013-04-07 (Sun, 07 Apr 2013)
Changed paths:
M slave/buildslave/test/util/misc.py
Log Message:
-----------
copy StdoutAssertionsMixin class to slave test util package
Commit: d22a54d17a6f4fea44b96d908c45668c296b8a77
https://github.com/buildbot/buildbot/commit/d22a54d17a6f4fea44b96d908c45668c296b8a77
Author: Elmir Jagudin <[email protected]>
Date: 2013-04-07 (Sun, 07 Apr 2013)
Changed paths:
M slave/buildslave/test/unit/test_scripts_base.py
M slave/buildslave/test/util/misc.py
Log Message:
-----------
tests: broke out open() patching code to a mix in class
Created buildslave.test.util.misc.OpenFileMixin class with methods
for patching open() to simulate successful reads and I/O errors.
Commit: c7da46f05c0e282aaa59666dfa32325e27a9db4f
https://github.com/buildbot/buildbot/commit/c7da46f05c0e282aaa59666dfa32325e27a9db4f
Author: Elmir Jagudin <[email protected]>
Date: 2013-04-07 (Sun, 07 Apr 2013)
Changed paths:
M slave/buildslave/scripts/runner.py
M slave/buildslave/test/unit/test_scripts_runner.py
Log Message:
-----------
fixed incorrectly printed message on 'buildslave restart'
Don't print 'no old buildslave process found to stop' when old
slave process was successfully terminated.
Previously stop() returned 'None' when slave was successfully
stoped. To restart() it looked like we failed to stop the slave.
Broke out the code to stop slave into a new stopSlave() utility
function, which will raise an exception if no slave is running.
Use stopSlave() from stop() and restart(), handle the exception
as appropriate for each case.
Commit: eb51c2766d96e7921347260d88608f44409af2ef
https://github.com/buildbot/buildbot/commit/eb51c2766d96e7921347260d88608f44409af2ef
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-11 (Thu, 11 Apr 2013)
Changed paths:
M slave/buildslave/scripts/runner.py
M slave/buildslave/test/unit/test_scripts_base.py
M slave/buildslave/test/unit/test_scripts_runner.py
M slave/buildslave/test/util/misc.py
Log Message:
-----------
Merge branch 'slave-restart-msg' of git://github.com/elmirjagudin/buildbot
Commit: 004bfebd0a5c31f7066042176ee072fe9903d0ed
https://github.com/buildbot/buildbot/commit/004bfebd0a5c31f7066042176ee072fe9903d0ed
Author: Tom Prince <[email protected]>
Date: 2013-04-13 (Sat, 13 Apr 2013)
Changed paths:
M master/buildbot/monkeypatches/__init__.py
A master/buildbot/monkeypatches/testcase_synctest.py
Log Message:
-----------
Monkey patch in synchronous test helpers.
These methods make it easy to test code involving deferreds in a synchronous
and deterministic manner, rather than having to spin the reactor.
Commit: 7e68b03aa8f57627e72e38101075163a98774b49
https://github.com/buildbot/buildbot/commit/7e68b03aa8f57627e72e38101075163a98774b49
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-14 (Sun, 14 Apr 2013)
Changed paths:
M master/buildbot/monkeypatches/__init__.py
A master/buildbot/monkeypatches/testcase_synctest.py
Log Message:
-----------
Merge branch 'sync-test-helpers' of git://github.com/tomprince/buildbot
Commit: f7dd314430c3d6b3b61336386b32bb9895a431d7
https://github.com/buildbot/buildbot/commit/f7dd314430c3d6b3b61336386b32bb9895a431d7
Author: Sleft <[email protected]>
Date: 2013-04-15 (Mon, 15 Apr 2013)
Changed paths:
M master/docs/tutorial/tour.rst
Log Message:
-----------
Fixed grep command for IRC in log
With grep IRC there is not output from cat on the log file but with grep -i irc
there is, see e.g.
```
$ cat master/twistd.log | grep IRC
$ cat master/twistd.log | grep -i irc
2013-04-15 13:26:44+0200 [-] Starting factory
<buildbot.status.words.IrcStatusFactory instance at 0x26ab638>
2013-04-15 13:26:58+0200 [IrcStatusBot,client]
<buildbot.status.words.IrcStatusBot instance at 0x23ea4d0>: I have joined
#buildbot-test
2013-04-15 13:27:29+0200 [-] Starting factory
<buildbot.status.words.IrcStatusFactory instance at 0x26b8170>
2013-04-15 13:27:29+0200 [IrcStatusBot,client] not scheduling reconnection
attempt
2013-04-15 13:27:29+0200 [IrcStatusBot,client] Stopping factory
<buildbot.status.words.IrcStatusFactory instance at 0x26ab638>
2013-04-15 13:27:42+0200 [IrcStatusBot,client]
<buildbot.status.words.IrcStatusBot instance at 0x25a10e0>: I have joined
#buildbot-test
```
Thus, maybe the example line from the log should be changed too?
I use
Buildbot version: 0.8.6p1
Twisted version: 12.2.0
Commit: e3d3e8e18da8f234a5779b4e93b891ea066756ce
https://github.com/buildbot/buildbot/commit/e3d3e8e18da8f234a5779b4e93b891ea066756ce
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-15 (Mon, 15 Apr 2013)
Changed paths:
M master/docs/tutorial/tour.rst
Log Message:
-----------
Merge branch 'master' of git://github.com/Sleft/buildbot
Commit: d00f6a9819b4a43b77db294e5ebbc5bfa70d8f6a
https://github.com/buildbot/buildbot/commit/d00f6a9819b4a43b77db294e5ebbc5bfa70d8f6a
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-15 (Mon, 15 Apr 2013)
Changed paths:
M master/buildbot/monkeypatches/__init__.py
Log Message:
-----------
fix typo in gh-pull 693
Commit: c2076072314d7d9aeaed5900ccd9389f43cce9ba
https://github.com/buildbot/buildbot/commit/c2076072314d7d9aeaed5900ccd9389f43cce9ba
Author: Sleft <[email protected]>
Date: 2013-04-15 (Mon, 15 Apr 2013)
Changed paths:
M master/docs/tutorial/tour.rst
Log Message:
-----------
Fixed inline code and command formatting
Inline code and command formatting should be consistent and clear.
Commit: 68c08eded0226d00f5c05ff326d55263f33c5edc
https://github.com/buildbot/buildbot/commit/68c08eded0226d00f5c05ff326d55263f33c5edc
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-15 (Mon, 15 Apr 2013)
Changed paths:
M master/docs/tutorial/tour.rst
Log Message:
-----------
Merge pull request #695 from Sleft/master
Fixed inline code and command formatting
Commit: a3d2fcad22c5fc106f49a4914409d41a22aa8c47
https://github.com/buildbot/buildbot/commit/a3d2fcad22c5fc106f49a4914409d41a22aa8c47
Author: Sleft <[email protected]>
Date: 2013-04-15 (Mon, 15 Apr 2013)
Changed paths:
M master/docs/tutorial/firstrun.rst
Log Message:
-----------
Fixed phrasing and formatted commands and code as such
Commit: a21c7984991204731f3c4835d30cba41a16982d8
https://github.com/buildbot/buildbot/commit/a21c7984991204731f3c4835d30cba41a16982d8
Author: Sleft <[email protected]>
Date: 2013-04-16 (Tue, 16 Apr 2013)
Changed paths:
M master/docs/tutorial/fiveminutes.rst
Log Message:
-----------
Fixed inline code and command formatting
Commit: b5329b58fde24ef0d5a0603baa188e98eb192e82
https://github.com/buildbot/buildbot/commit/b5329b58fde24ef0d5a0603baa188e98eb192e82
Author: Sleft <[email protected]>
Date: 2013-04-16 (Tue, 16 Apr 2013)
Changed paths:
M master/docs/manual/installation.rst
Log Message:
-----------
Note and warning about distribution specific package managers
Commit: 6bef3b75a25b6b9d77caeae48aad3e32f0181664
https://github.com/buildbot/buildbot/commit/6bef3b75a25b6b9d77caeae48aad3e32f0181664
Author: Sleft <[email protected]>
Date: 2013-04-16 (Tue, 16 Apr 2013)
Changed paths:
M master/docs/tutorial/firstrun.rst
Log Message:
-----------
Preferred way to install is via pip
To be consistent with the manual
Commit: 113582fca6ab5af2ca61df1a7b08de1a414fef43
https://github.com/buildbot/buildbot/commit/113582fca6ab5af2ca61df1a7b08de1a414fef43
Author: Sleft <[email protected]>
Date: 2013-04-16 (Tue, 16 Apr 2013)
Changed paths:
M master/docs/manual/installation.rst
Log Message:
-----------
Less repetetive when using synonym
Also fixed command formatting
Commit: 83bc2954aebdc532608fa59a8894fedacef9119b
https://github.com/buildbot/buildbot/commit/83bc2954aebdc532608fa59a8894fedacef9119b
Author: Sleft <[email protected]>
Date: 2013-04-16 (Tue, 16 Apr 2013)
Changed paths:
M master/docs/manual/concepts.rst
Log Message:
-----------
Fixed link
Commit: e31048a402018fe5d108c13f27db316785c69d1d
https://github.com/buildbot/buildbot/commit/e31048a402018fe5d108c13f27db316785c69d1d
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-16 (Tue, 16 Apr 2013)
Changed paths:
M master/docs/manual/concepts.rst
M master/docs/manual/installation.rst
M master/docs/tutorial/firstrun.rst
M master/docs/tutorial/fiveminutes.rst
M master/docs/tutorial/tour.rst
Log Message:
-----------
Merge branch 'master' of git://github.com/Sleft/buildbot
Commit: 0946659b0fd776ba5b5a0b464b086fcfbc47ba4e
https://github.com/buildbot/buildbot/commit/0946659b0fd776ba5b5a0b464b086fcfbc47ba4e
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-16 (Tue, 16 Apr 2013)
Log Message:
-----------
Merge branch 'master' of github.com:buildbot/buildbot
Commit: 7a619b31d12a1f595c7f265965cf1e66a14705ec
https://github.com/buildbot/buildbot/commit/7a619b31d12a1f595c7f265965cf1e66a14705ec
Author: Dan Kegel <[email protected]>
Date: 2013-04-18 (Thu, 18 Apr 2013)
Changed paths:
M master/buildbot/changes/gitpoller.py
Log Message:
-----------
Include error message in gitpoller failure exception - Fixes #2491.
Commit: cc3427cbc77385bcb00975cef677c8f46dbe3a87
https://github.com/buildbot/buildbot/commit/cc3427cbc77385bcb00975cef677c8f46dbe3a87
Author: Olof Johansson <[email protected]>
Date: 2013-04-18 (Thu, 18 Apr 2013)
Changed paths:
M master/setup.py
Log Message:
-----------
Install buildbot.buildslave master package
Commit: f745ce05c68d9e250338f4b12ef89b50d7da531c
https://github.com/buildbot/buildbot/commit/f745ce05c68d9e250338f4b12ef89b50d7da531c
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-18 (Thu, 18 Apr 2013)
Changed paths:
M master/setup.py
Log Message:
-----------
Merge branch 'buildbot-0.8.8'
Commit: 1d0dca0488e02777cff23108b65b2fc06869cf2c
https://github.com/buildbot/buildbot/commit/1d0dca0488e02777cff23108b65b2fc06869cf2c
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-18 (Thu, 18 Apr 2013)
Changed paths:
A master/docs/relnotes/0.8.8.rst
M master/docs/relnotes/index.rst
Log Message:
-----------
archive release notes
Commit: 8c40c659bab2560afbd57128db232e115268a77e
https://github.com/buildbot/buildbot/commit/8c40c659bab2560afbd57128db232e115268a77e
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-18 (Thu, 18 Apr 2013)
Changed paths:
M master/buildbot/changes/gitpoller.py
M master/buildbot/monkeypatches/__init__.py
A master/buildbot/monkeypatches/testcase_synctest.py
M master/docs/manual/concepts.rst
M master/docs/manual/installation.rst
A master/docs/relnotes/0.8.8.rst
M master/docs/relnotes/index.rst
M master/docs/tutorial/firstrun.rst
M master/docs/tutorial/fiveminutes.rst
M master/docs/tutorial/tour.rst
M master/setup.py
M slave/buildslave/scripts/runner.py
M slave/buildslave/test/unit/test_scripts_base.py
M slave/buildslave/test/unit/test_scripts_runner.py
M slave/buildslave/test/util/misc.py
Log Message:
-----------
Merge branch 'master' into nine
Conflicts:
master/buildbot/monkeypatches/__init__.py
Commit: 18323882c760ad13f3ef7202a7735690bbf3c3c9
https://github.com/buildbot/buildbot/commit/18323882c760ad13f3ef7202a7735690bbf3c3c9
Author: Dustin J. Mitchell <[email protected]>
Date: 2013-04-18 (Thu, 18 Apr 2013)
Changed paths:
M www/grunt.js
M www/src/scripts/controllers/buildersController.coffee
M www/src/scripts/controllers/changesController.coffee
M www/src/scripts/controllers/homeController.coffee
M www/src/scripts/directives/topmenu.coffee
R www/src/scripts/filters/twitterfy.coffee
M www/src/scripts/main.coffee
M www/src/scripts/responseInterceptors/dispatcher.coffee
M www/src/scripts/routes.coffee
M www/src/scripts/run.coffee
M www/src/scripts/services/buildbotService.coffee
M www/src/scripts/services/messageService.coffee
M www/src/scripts/services/recentStorage.coffee
Log Message:
-----------
clean up coffeeLint
Compare:
https://github.com/buildbot/buildbot/compare/64e26df79f1d...18323882c760
------------------------------------------------------------------------------
Precog is a next-generation analytics platform capable of advanced
analytics on semi-structured data. The platform includes APIs for building
apps and a phenomenal toolset for data science. Developers can use
our toolset for easy data analysis & visualization. Get a free account!
http://www2.precog.com/precogplatform/slashdotnewsletter
_______________________________________________
Buildbot-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/buildbot-commits