From trac at buildbot.net Sun Dec 1 13:52:05 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 01 Dec 2013 13:52:05 -0000 Subject: [Buildbot-commits] [Buildbot] #2600: buildbot try doesn't work with patches >=64kb when using a mysqlite database Message-ID: <040.c146fc2ebf75fc190412de880aca7124@buildbot.net> #2600: buildbot try doesn't work with patches >=64kb when using a mysqlite database ---------------------+-------------------------------- Reporter: dluntzer | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: database try mysql ---------------------+-------------------------------- When using pb as connection method for try builds the patches are storred in the database. The current buildbot implementation uses the mysql-type "text" to store the patch-data. According to the mysql-documentation the maximum size of this type is 64kb (http://dev.mysql.com/doc/refman/5.0/en/storage-requirements.html). When submitting a try-build with a patch-size larger than 64kb the try command does not return an error message but the patch is never processed. According to the output of the web interface (see output below) base64 decoding of the patch fails and the triggered buildslaves stop working. To solve this exception the patch has to be manually removed from the database. If the 64kb limit for mysql is intended it would be better to not accept patches exceeding this limit and to return an error message. Otherwise changing the datatype to mediumtext (limit 16mb) or longtext could solve this issue... web.Server Traceback (most recent call last): exceptions.TypeError: Incorrect padding /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/internet/defer.py:1097 in _inlineCallbacks 1096 if isFailure: 1097 result = result.throwExceptionIntoGenerator(g) 1098 else: /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/python/failure.py:389 in throwExceptionIntoGenerator 388 """ 389 return g.throw(self.type, self.value, self.tb) 390 /usr/local/lib/python2.7/dist- packages/buildbot-0.8.8-py2.7.egg/buildbot/status/web/builder.py:266 in content 265 266 source = yield pb.getSourceStamp() 267 submitTime = yield pb.getSubmitTime() /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/internet/defer.py:1097 in _inlineCallbacks 1096 if isFailure: 1097 result = result.throwExceptionIntoGenerator(g) 1098 else: /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/python/failure.py:389 in throwExceptionIntoGenerator 388 """ 389 return g.throw(self.type, self.value, self.tb) 390 /usr/local/lib/python2.7/dist- packages/buildbot-0.8.8-py2.7.egg/buildbot/status/buildrequest.py:85 in getSourceStamp 84 def getSourceStamp(self): 85 br = yield self._getBuildRequest() 86 defer.returnValue(br.source) /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/internet/defer.py:1097 in _inlineCallbacks 1096 if isFailure: 1097 result = result.throwExceptionIntoGenerator(g) 1098 else: /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/python/failure.py:389 in throwExceptionIntoGenerator 388 """ 389 return g.throw(self.type, self.value, self.tb) 390 /usr/local/lib/python2.7/dist- packages/buildbot-0.8.8-py2.7.egg/buildbot/status/buildrequest.py:58 in _getBuildRequest 57 br = yield buildrequest.BuildRequest.fromBrdict(self.master, 58 brd) 59 self._buildrequest = br /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/internet/defer.py:1097 in _inlineCallbacks 1096 if isFailure: 1097 result = result.throwExceptionIntoGenerator(g) 1098 else: /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/python/failure.py:389 in throwExceptionIntoGenerator 388 """ 389 return g.throw(self.type, self.value, self.tb) 390 /usr/local/lib/python2.7/dist- packages/buildbot-0.8.8-py2.7.egg/buildbot/process/buildrequest.py:116 in _make_br 115 # fetch the sourcestamp dictionary 116 sslist = yield master.db.sourcestamps.getSourceStamps(buildset['sourcestampsetid']) 117 assert len(sslist) > 0, "Empty sourcestampset: db schema enforces set to exist but cannot enforce a non empty set" /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/internet/defer.py:1097 in _inlineCallbacks 1096 if isFailure: 1097 result = result.throwExceptionIntoGenerator(g) 1098 else: /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/python/failure.py:389 in throwExceptionIntoGenerator 388 """ 389 return g.throw(self.type, self.value, self.tb) 390 /usr/local/lib/python2.7/dist- packages/buildbot-0.8.8-py2.7.egg/buildbot/db/sourcestamps.py:95 in getSourceStamps 94 for ssid in ssids: 95 sourcestamp = yield self.getSourceStamp(ssid) 96 sslist.append(sourcestamp) /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/python/threadpool.py:191 in _worker 190 try: 191 result = context.call(ctx, function, *args, **kwargs) 192 success = True /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/python/context.py:118 in callWithContext 117 def callWithContext(self, ctx, func, *args, **kw): 118 return self.currentContext().callWithContext(ctx, func, *args, **kw) 119 /usr/local/lib/python2.7/dist- packages/Twisted-13.2.0-py2.7-linux-i686.egg/twisted/python/context.py:81 in callWithContext 80 try: 81 return func(*args,**kw) 82 finally: /usr/local/lib/python2.7/dist- packages/buildbot-0.8.8-py2.7.egg/buildbot/db/pool.py:184 in __thd 183 try: 184 rv = callable(arg, *args, **kwargs) 185 assert not isinstance(rv, sa.engine.ResultProxy), \ /usr/local/lib/python2.7/dist- packages/buildbot-0.8.8-py2.7.egg/buildbot/db/sourcestamps.py:129 in thd 128 ssdict['patch_comment'] = row.patch_comment 129 body = base64.b64decode(row.patch_base64) 130 ssdict['patch_body'] = body /usr/lib/python2.7/base64.py:76 in b64decode 75 # Transform this exception for consistency 76 raise TypeError(msg) 77 exceptions.TypeError: Incorrect padding -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Sun Dec 1 13:55:20 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 01 Dec 2013 13:55:20 -0000 Subject: [Buildbot-commits] [Buildbot] #2600: buildbot try doesn't work with patches >=64kb when using a mysql database (was: buildbot try doesn't work with patches >=64kb when using a mysqlite database) In-Reply-To: <040.c146fc2ebf75fc190412de880aca7124@buildbot.net> References: <040.c146fc2ebf75fc190412de880aca7124@buildbot.net> Message-ID: <055.e0cf416036b7c758f3a59610761e137a@buildbot.net> #2600: buildbot try doesn't work with patches >=64kb when using a mysql database -------------------------------+------------------------ Reporter: dluntzer | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Resolution: Keywords: database try mysql | -------------------------------+------------------------ -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Mon Dec 2 10:29:17 2013 From: trac at buildbot.net (Buildbot trac) Date: Mon, 02 Dec 2013 10:29:17 -0000 Subject: [Buildbot-commits] [Buildbot] #2570: Cannot connect to master from a reactor script: invalid login from unknown user In-Reply-To: <042.fb30d124c30daf79ae656b97ad756ea4@buildbot.net> References: <042.fb30d124c30daf79ae656b97ad756ea4@buildbot.net> Message-ID: <057.b82a0eb345701e08c4b4111869c97edf@buildbot.net> #2570: Cannot connect to master from a reactor script: invalid login from unknown user -----------------------+--------------------- Reporter: jollyroger | Owner: Type: defect | Status: closed Priority: major | Milestone: 0.9.+ Version: master | Resolution: fixed Keywords: | -----------------------+--------------------- Comment (by jollyroger): Thank you! It worked! -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Mon Dec 2 12:52:41 2013 From: trac at buildbot.net (Buildbot trac) Date: Mon, 02 Dec 2013 12:52:41 -0000 Subject: [Buildbot-commits] [Buildbot] #2601: Properties sent by sendchange command are not used during build Message-ID: <042.1ca2d3b8b45640024973858d703a9d71@buildbot.net> #2601: Properties sent by sendchange command are not used during build -----------------------+------------------- Reporter: jollyroger | Owner: Type: defect | Status: new Priority: major | Milestone: 0.9.+ Version: master | Keywords: -----------------------+------------------- I use sendchange command to pass properties, but since nine release these are not used during build that causes KeyError: {{{ 2013-12-02 14:21:57+0200 [-] starting build using slave 2013-12-02 14:21:57+0200 [-] acquireLocks(slave , locks []) 2013-12-02 14:21:57+0200 [-] starting build .. pinging the slave 2013-12-02 14:21:57+0200 [-] sending ping 2013-12-02 14:21:57+0200 [Broker,0,127.0.0.1] ping finished: success 2013-12-02 14:21:57+0200 [-] .startBuild 2013-12-02 14:21:57+0200 [-] BuildStep.failed; traceback follows Traceback (most recent call last): Failure: twisted.internet.defer.FirstError: FirstError[#14, [Failure instance: Traceback: : 'deb-dsc' /usr/lib/python2.7/dist- packages/twisted/internet/defer.py:1070:_inlineCallbacks /home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/buildstep.py:260:startStep /home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/properties.py:200:render /home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/properties.py:159:render --- --- /usr/lib/python2.7/dist- packages/twisted/internet/defer.py:137:maybeDeferred /home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/properties.py:311:getRenderingFor /home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/properties.py:268:__getitem__ /home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/properties.py:86:__getitem__ ]] 2013-12-02 14:21:57+0200 [-] addCompleteLog(err.text) 2013-12-02 14:21:57+0200 [-] addHTMLLog(err.html) 2013-12-02 14:21:57+0200 [-] releaseLocks(): [] 2013-12-02 14:21:57+0200 [-] BuildStep.failed now firing callback 2013-12-02 14:21:57+0200 [-] Unhandled error in Deferred: 2013-12-02 14:21:57+0200 [-] Unhandled Error Traceback (most recent call last): File "/usr/lib/python2.7/dist- packages/twisted/internet/defer.py", line 1070, in _inlineCallbacks result = g.send(result) File "/home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/buildstep.py", line 260, in startStep d = self.build.render(getattr(self, renderable)) File "/home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/properties.py", line 200, in render return props.render(value) File "/home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/properties.py", line 159, in render return defer.maybeDeferred(renderable.getRenderingFor, self) --- --- File "/usr/lib/python2.7/dist- packages/twisted/internet/defer.py", line 137, in maybeDeferred result = f(*args, **kw) File "/home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/properties.py", line 311, in getRenderingFor s = self.fmtstring % pmap File "/home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/properties.py", line 268, in __getitem__ rv = properties[key] File "/home/jollyroger/debian/packages/buildbot/0.9/buildbot/master/buildbot/process/properties.py", line 86, in __getitem__ rv = self.properties[name][0] exceptions.KeyError: 'deb-dsc' 2013-12-02 14:21:57+0200 [-] step 'dget' complete: exception 2013-12-02 14:21:57+0200 [-] : build finished 2013-12-02 14:21:57+0200 [-] releaseLocks(): [] }}} Here are the logs that indicate that change was accepted. {{{ 2013-12-02 14:21:42+0200 [Broker,1,127.0.0.1] perspective_addChange called 2013-12-02 14:21:43+0200 [-] added change with revision 0.1.1-1 to database 2013-12-02 14:21:43+0200 [-] added buildset 2 to database }}} Properties that were sent by changes are found in the database as well. I'm not sure if other properties are used or if other sources of properties data (builders, schedulers, slaves) are working because new web interface shows neither properties used in the build or passed with the change nor the build step that failed with an exception. Buildbot version: 0.8.8-1443-ga9ef2fc (the recent nine branch head) -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Mon Dec 2 20:14:10 2013 From: trac at buildbot.net (Buildbot trac) Date: Mon, 02 Dec 2013 20:14:10 -0000 Subject: [Buildbot-commits] [Buildbot] #2602: Broken JAON API description list Message-ID: <042.89e9ca94004f9cb976ca3ce91d98b481@buildbot.net> #2602: Broken JAON API description list -----------------------+----------------------- Reporter: jollyroger | Owner: Type: undecided | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: -----------------------+----------------------- API description, that is located on the about page of the buildbot master (nine branch) shows nothing but repeatable list of "/: fields" (see the screenshot). It was a list of possible calls before. From my conversation with dustin: > 21:58 < djmitche> right.. I bet the forcesched merge broke that Buildbot version: 0.8.8-1443-ga9ef2fc -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Mon Dec 2 20:16:03 2013 From: trac at buildbot.net (Buildbot trac) Date: Mon, 02 Dec 2013 20:16:03 -0000 Subject: [Buildbot-commits] [Buildbot] #2602: Broken JAON API description list In-Reply-To: <042.89e9ca94004f9cb976ca3ce91d98b481@buildbot.net> References: <042.89e9ca94004f9cb976ca3ce91d98b481@buildbot.net> Message-ID: <057.e8963eb23736975356e14f9a6bf29c9f@buildbot.net> #2602: Broken JAON API description list -----------------------+-------------------- Reporter: jollyroger | Owner: Type: defect | Status: new Priority: minor | Milestone: 0.9.+ Version: master | Resolution: Keywords: web | -----------------------+-------------------- Changes (by jollyroger): * keywords: => web * priority: major => minor * version: 0.8.8 => master * type: undecided => defect * milestone: undecided => 0.9.+ -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Tue Dec 3 19:03:39 2013 From: trac at buildbot.net (Buildbot trac) Date: Tue, 03 Dec 2013 19:03:39 -0000 Subject: [Buildbot-commits] [Buildbot] #2603: Support Visual Studio 2013 Message-ID: <040.99ee8ea30b94f370201a9af9e067bcb5@buildbot.net> #2603: Support Visual Studio 2013 ------------------------+----------------------- Reporter: shoelzer | Owner: Type: enhancement | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: ------------------------+----------------------- Buildbot supports many older versions of Visual Studio, but not 2013. -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Thu Dec 5 00:03:53 2013 From: trac at buildbot.net (Buildbot trac) Date: Thu, 05 Dec 2013 00:03:53 -0000 Subject: [Buildbot-commits] [Buildbot] #2600: buildbot try doesn't work with patches >=64kb when using a mysql database In-Reply-To: <040.c146fc2ebf75fc190412de880aca7124@buildbot.net> References: <040.c146fc2ebf75fc190412de880aca7124@buildbot.net> Message-ID: <055.5e859594a0ef14632c6d6ef8c5656a9a@buildbot.net> #2600: buildbot try doesn't work with patches >=64kb when using a mysql database --------------------------------+-------------------- Reporter: dluntzer | Owner: Type: defect | Status: new Priority: major | Milestone: 0.9.0 Version: 0.8.8 | Resolution: Keywords: database try simple | --------------------------------+-------------------- Changes (by dustin): * keywords: database try mysql => database try simple * milestone: undecided => 0.9.0 Comment: Agreed - we should probably increase the column size. DB changes are frozen in 0.8.x, so that would need to happen in the nine branch. -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Thu Dec 5 00:06:54 2013 From: noreply at github.com (GitHub) Date: Wed, 04 Dec 2013 16:06:54 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 3c1652: sse: add possibility to control existing connectio... Message-ID: <529fc39e65f5b_157c1127d4c145560@hookshot-fe1-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 3c1652acf0199c16fdb9c43b49b79ed8f310e26b https://github.com/buildbot/buildbot/commit/3c1652acf0199c16fdb9c43b49b79ed8f310e26b Author: Pierre Tardy Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/buildbot/test/unit/test_data_changes.py A master/buildbot/test/unit/test_www_sse.py M master/buildbot/test/util/www.py M master/buildbot/www/sse.py M master/docs/developer/www.rst Log Message: ----------- sse: add possibility to control existing connection unit test, doc and coherency with websocket api Signed-off-by: Pierre Tardy Commit: 56381a38f081b19db0759009819b41ad35dd6a75 https://github.com/buildbot/buildbot/commit/56381a38f081b19db0759009819b41ad35dd6a75 Author: Pierre Tardy Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M common/validate.sh Log Message: ----------- fix validate on osx Commit: 47924c1fd426d4a76a59d56118c09524c26e1586 https://github.com/buildbot/buildbot/commit/47924c1fd426d4a76a59d56118c09524c26e1586 Author: Dustin J. Mitchell Date: 2013-12-04 (Wed, 04 Dec 2013) Changed paths: M common/validate.sh M master/buildbot/test/unit/test_data_changes.py A master/buildbot/test/unit/test_www_sse.py M master/buildbot/test/util/www.py M master/buildbot/www/sse.py M master/docs/developer/www.rst Log Message: ----------- Merge branch 'sse' of git://github.com/tardyp/buildbot into nine Compare: https://github.com/buildbot/buildbot/compare/a9ef2fcd9f60...47924c1fd426 From trac at buildbot.net Thu Dec 5 20:42:57 2013 From: trac at buildbot.net (Buildbot trac) Date: Thu, 05 Dec 2013 20:42:57 -0000 Subject: [Buildbot-commits] [Buildbot] #2604: Documentation doesn't reflect exposition of twisted.cred on change_hook_auth Message-ID: <042.12864e44bd70db0acc57b67693b32b3c@buildbot.net> #2604: Documentation doesn't reflect exposition of twisted.cred on change_hook_auth -----------------------+------------------------ Reporter: damnwidget | Owner: damnwidget Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: docs -----------------------+------------------------ The twisted.cred API was exposed in change_hook_auth for change hooks by Tom Prince in https://github.com/buildbot/buildbot/commit/3b1b6e600ca5c95961ec14dd56e602e1ca62408b but the documentation does not reflect this change in BitBucket, Google Code and GitLab change hook sections. -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Thu Dec 5 21:20:34 2013 From: trac at buildbot.net (Buildbot trac) Date: Thu, 05 Dec 2013 21:20:34 -0000 Subject: [Buildbot-commits] [Buildbot] #2605: Change Hooks Auth fails when checker is a unicode string Message-ID: <042.61c85430a7d483fc1ab13d3fbe7c8bbd@buildbot.net> #2605: Change Hooks Auth fails when checker is a unicode string -----------------------+------------------------ Reporter: damnwidget | Owner: damnwidget Type: defect | Status: new Priority: minor | Milestone: undecided Version: 0.8.8 | Keywords: -----------------------+------------------------ For people like me that use JSON files to generate the WebStatus objects, when the __init__ method try to generate the ICredentialChecker for the given strcred, it fails with message "change_hook checker doesn't provide ICredentialChecker: u'' as the checker string is unicode due the json.load method. -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 6 02:53:12 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 06 Dec 2013 02:53:12 -0000 Subject: [Buildbot-commits] [Buildbot] #2529: GitPoller Splits Changed Files list on spaces instead of newline In-Reply-To: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> References: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> Message-ID: <061.85afe1ef17b3bfa29e337819591b5143@buildbot.net> #2529: GitPoller Splits Changed Files list on spaces instead of newline ---------------------------+------------------------ Reporter: Jeremy.Cornett | Owner: Type: defect | Status: new Priority: minor | Milestone: undecided Version: 0.8.7p1 | Resolution: Keywords: | ---------------------------+------------------------ Comment (by spikeekips@?): Why this patch was not applied into source repository? This patch was suggested almost 4 month ago. :( -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 6 19:27:03 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 06 Dec 2013 19:27:03 -0000 Subject: [Buildbot-commits] [Buildbot] #2529: GitPoller Splits Changed Files list on spaces instead of newline In-Reply-To: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> References: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> Message-ID: <061.e5996c7885d32b4764ca6ee12c787504@buildbot.net> #2529: GitPoller Splits Changed Files list on spaces instead of newline ---------------------------+------------------------ Reporter: Jeremy.Cornett | Owner: Type: defect | Status: new Priority: minor | Milestone: undecided Version: 0.8.7p1 | Resolution: Keywords: | ---------------------------+------------------------ Comment (by Jeremy.Cornett): I'm guessing it hasn't been added because I haven't taken the time to write the appropriate unit test to go with the patch. -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 6 19:29:48 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 06 Dec 2013 19:29:48 -0000 Subject: [Buildbot-commits] [Buildbot] #2529: GitPoller Splits Changed Files list on spaces instead of newline In-Reply-To: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> References: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> Message-ID: <061.2626b9669ee826ba181af0262ba3f000@buildbot.net> #2529: GitPoller Splits Changed Files list on spaces instead of newline ---------------------------+------------------------ Reporter: Jeremy.Cornett | Owner: Type: defect | Status: new Priority: minor | Milestone: undecided Version: 0.8.7p1 | Resolution: Keywords: | ---------------------------+------------------------ Comment (by Jeremy.Cornett): It's been really low on my priority list as I've already applied the patch to our local copy of the BuildBot repository. It works great, by the way. -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Sun Dec 8 15:35:23 2013 From: noreply at github.com (GitHub) Date: Sun, 08 Dec 2013 07:35:23 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] e6a9d4: Document poller hook POST request Message-ID: <52a491bb50120_632d7c1d4816035@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: e6a9d413b6f084351c4c2fd07a3a40ff5c4f09b7 https://github.com/buildbot/buildbot/commit/e6a9d413b6f084351c4c2fd07a3a40ff5c4f09b7 Author: Marko Kohtala Date: 2013-12-05 (Thu, 05 Dec 2013) Changed paths: M master/docs/manual/cfg-statustargets.rst Log Message: ----------- Document poller hook POST request The WebStatus Poller hook documentation did not mention POST requests. POST allows use of cleaner curl -F option for poller parameter. Commit: 7b23dff6d2bb9a8083a0bc755a2cd0867a0d4359 https://github.com/buildbot/buildbot/commit/7b23dff6d2bb9a8083a0bc755a2cd0867a0d4359 Author: Pierre Tardy Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/docs/manual/cfg-statustargets.rst Log Message: ----------- Merge pull request #994 from kohtala/master Document poller hook POST request Compare: https://github.com/buildbot/buildbot/compare/70f2e06e6cb4...7b23dff6d2bb From noreply at github.com Sun Dec 8 15:43:59 2013 From: noreply at github.com (GitHub) Date: Sun, 08 Dec 2013 07:43:59 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 3804cd: Fix: unsubscribe StatusPush Message-ID: <52a493bf512fe_5338bb7d58653f3@hookshot-fe6-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 3804cdf0b5304dc9b4b7fd15fe4bec5dd9859bd4 https://github.com/buildbot/buildbot/commit/3804cdf0b5304dc9b4b7fd15fe4bec5dd9859bd4 Author: delanne Date: 2013-12-06 (Fri, 06 Dec 2013) Changed paths: M master/buildbot/status/status_push.py Log Message: ----------- Fix: unsubscribe StatusPush Commit: b0a91ba7d363e099cee6aa2a9bb6b45250c68aa8 https://github.com/buildbot/buildbot/commit/b0a91ba7d363e099cee6aa2a9bb6b45250c68aa8 Author: Pierre Tardy Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/status/status_push.py Log Message: ----------- Merge pull request #997 from delanne/status_push_dont_unsubscribe Fix: unsubscribe StatusPush Compare: https://github.com/buildbot/buildbot/compare/7b23dff6d2bb...b0a91ba7d363 From noreply at github.com Sun Dec 8 15:55:16 2013 From: noreply at github.com (GitHub) Date: Sun, 08 Dec 2013 07:55:16 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 834708: Add build steps for VC12, VS2013, and MsBuild12 Message-ID: <52a49664e6368_5ee895dd50328a6@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 83470888b9c7dbddacea58998fd98fc75f9cb263 https://github.com/buildbot/buildbot/commit/83470888b9c7dbddacea58998fd98fc75f9cb263 Author: Steve Hoelzer Date: 2013-12-03 (Tue, 03 Dec 2013) Changed paths: M master/buildbot/steps/vstudio.py Log Message: ----------- Add build steps for VC12, VS2013, and MsBuild12 Commit: 3b528a2be5c5fca15b1e3d431cadc5cea1c9ad3e https://github.com/buildbot/buildbot/commit/3b528a2be5c5fca15b1e3d431cadc5cea1c9ad3e Author: Pierre Tardy Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/steps/vstudio.py Log Message: ----------- Merge pull request #992 from shoelzer/master Add build steps for VC12, VS2013, and MsBuild12 Compare: https://github.com/buildbot/buildbot/compare/b0a91ba7d363...3b528a2be5c5 From noreply at github.com Sun Dec 8 17:16:06 2013 From: noreply at github.com (GitHub) Date: Sun, 08 Dec 2013 09:16:06 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 1836bb: when unicode strings are passed as change_hook_aut... Message-ID: <52a4a9563dd8f_3c8a1007d5450fd@hookshot-fe1-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 1836bbd4cc66f3ac73403f2cc8843feb8c5c4134 https://github.com/buildbot/buildbot/commit/1836bbd4cc66f3ac73403f2cc8843feb8c5c4134 Author: @damnwidget Date: 2013-12-05 (Thu, 05 Dec 2013) Changed paths: M master/buildbot/status/web/baseweb.py Log Message: ----------- when unicode strings are passed as change_hook_auth parameters for WebStatus hooks (when using JSON files as configuration for example), the __init__ method fails, just fix that Commit: 35d07cd30750c6d12f688b2b19b37cd5cfc70acd https://github.com/buildbot/buildbot/commit/35d07cd30750c6d12f688b2b19b37cd5cfc70acd Author: @damnwidget Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/status/web/baseweb.py Log Message: ----------- using basestring as object to check for isinstance call on baseweb change_hook_auth Commit: 48c9dcb6eacd60fe5603b09179865c998c13208f https://github.com/buildbot/buildbot/commit/48c9dcb6eacd60fe5603b09179865c998c13208f Author: Pierre Tardy Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/status/web/baseweb.py Log Message: ----------- Merge pull request #996 from DamnWidget/#2605 [Fixes] For ticket #2605 Compare: https://github.com/buildbot/buildbot/compare/3b528a2be5c5...48c9dcb6eacd From noreply at github.com Sun Dec 8 20:10:31 2013 From: noreply at github.com (GitHub) Date: Sun, 08 Dec 2013 12:10:31 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] bf5c14: Indicate that we don't use GitHub issues Message-ID: <52a4d23758e78_3d354a3d5079720@hookshot-fe1-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: bf5c148e7b427c1f685ce846696a90ed2dc24704 https://github.com/buildbot/buildbot/commit/bf5c148e7b427c1f685ce846696a90ed2dc24704 Author: Dustin J. Mitchell Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M CONTRIBUTING.md Log Message: ----------- Indicate that we don't use GitHub issues From trac at buildbot.net Sun Dec 8 20:22:07 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 08 Dec 2013 20:22:07 -0000 Subject: [Buildbot-commits] [Buildbot] #2601: Properties sent by sendchange command are not used during build In-Reply-To: <042.1ca2d3b8b45640024973858d703a9d71@buildbot.net> References: <042.1ca2d3b8b45640024973858d703a9d71@buildbot.net> Message-ID: <057.cbd6bb90ec7b4d9c8d0f9e87c99cdf38@buildbot.net> #2601: Properties sent by sendchange command are not used during build -----------------------+-------------------- Reporter: jollyroger | Owner: Type: defect | Status: new Priority: critical | Milestone: 0.9.0 Version: master | Resolution: Keywords: | -----------------------+-------------------- Changes (by dustin): * priority: major => critical * milestone: 0.9.+ => 0.9.0 -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Sun Dec 8 21:15:53 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 08 Dec 2013 21:15:53 -0000 Subject: [Buildbot-commits] [Buildbot] #2603: Support Visual Studio 2013 In-Reply-To: <040.99ee8ea30b94f370201a9af9e067bcb5@buildbot.net> References: <040.99ee8ea30b94f370201a9af9e067bcb5@buildbot.net> Message-ID: <055.7e9a16791a4067f87ff69cffafb40a16@buildbot.net> #2603: Support Visual Studio 2013 ------------------------+-------------------- Reporter: shoelzer | Owner: Type: enhancement | Status: new Priority: major | Milestone: 0.8.+ Version: 0.8.8 | Resolution: Keywords: windows | ------------------------+-------------------- Changes (by dustin): * keywords: => windows * milestone: undecided => 0.8.+ -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Sun Dec 8 21:19:31 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 08 Dec 2013 21:19:31 -0000 Subject: [Buildbot-commits] [Buildbot] #2604: Documentation doesn't reflect exposition of twisted.cred on change_hook_auth In-Reply-To: <042.12864e44bd70db0acc57b67693b32b3c@buildbot.net> References: <042.12864e44bd70db0acc57b67693b32b3c@buildbot.net> Message-ID: <057.7f4cf39b59b9110b053faefa0d81d126@buildbot.net> #2604: Documentation doesn't reflect exposition of twisted.cred on change_hook_auth -----------------------+------------------------- Reporter: damnwidget | Owner: damnwidget Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Resolution: Keywords: docs | -----------------------+------------------------- Comment (by dustin): https://github.com/buildbot/buildbot/pull/995 -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Sun Dec 8 21:21:04 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 08 Dec 2013 21:21:04 -0000 Subject: [Buildbot-commits] [Buildbot] #2605: Change Hooks Auth fails when checker is a unicode string In-Reply-To: <042.61c85430a7d483fc1ab13d3fbe7c8bbd@buildbot.net> References: <042.61c85430a7d483fc1ab13d3fbe7c8bbd@buildbot.net> Message-ID: <057.a370d10c275455b0f7c471edf0af06cb@buildbot.net> #2605: Change Hooks Auth fails when checker is a unicode string -----------------------+------------------------- Reporter: damnwidget | Owner: damnwidget Type: defect | Status: new Priority: minor | Milestone: 0.8.9 Version: 0.8.8 | Resolution: Keywords: | -----------------------+------------------------- Changes (by dustin): * milestone: undecided => 0.8.9 Comment: Fixed in https://github.com/buildbot/buildbot/pull/996 -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Sun Dec 8 21:21:13 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 08 Dec 2013 21:21:13 -0000 Subject: [Buildbot-commits] [Buildbot] #2605: Change Hooks Auth fails when checker is a unicode string In-Reply-To: <042.61c85430a7d483fc1ab13d3fbe7c8bbd@buildbot.net> References: <042.61c85430a7d483fc1ab13d3fbe7c8bbd@buildbot.net> Message-ID: <057.ff5eee5c86dc8fcfff956c31be9e20d9@buildbot.net> #2605: Change Hooks Auth fails when checker is a unicode string -----------------------+------------------------- Reporter: damnwidget | Owner: damnwidget Type: defect | Status: closed Priority: minor | Milestone: 0.8.9 Version: 0.8.8 | Resolution: fixed Keywords: | -----------------------+------------------------- Changes (by dustin): * status: new => closed * resolution: => fixed -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Sun Dec 8 21:22:09 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 08 Dec 2013 21:22:09 -0000 Subject: [Buildbot-commits] [Buildbot] #2529: GitPoller Splits Changed Files list on spaces instead of newline In-Reply-To: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> References: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> Message-ID: <061.337bf76828c74e7da15ec4820f3de85c@buildbot.net> #2529: GitPoller Splits Changed Files list on spaces instead of newline ---------------------------+------------------------ Reporter: Jeremy.Cornett | Owner: Type: defect | Status: new Priority: minor | Milestone: undecided Version: 0.8.7p1 | Resolution: Keywords: | ---------------------------+------------------------ Comment (by dustin): spikeekips, if you have time to write a test, that would be great! -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Sun Dec 8 21:23:01 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 08 Dec 2013 21:23:01 -0000 Subject: [Buildbot-commits] [Buildbot] #2603: Support Visual Studio 2013 In-Reply-To: <040.99ee8ea30b94f370201a9af9e067bcb5@buildbot.net> References: <040.99ee8ea30b94f370201a9af9e067bcb5@buildbot.net> Message-ID: <055.10fb505bcbf5a6d72479a05159662e0e@buildbot.net> #2603: Support Visual Studio 2013 ------------------------+--------------------- Reporter: shoelzer | Owner: Type: enhancement | Status: closed Priority: major | Milestone: 0.8.+ Version: 0.8.8 | Resolution: fixed Keywords: windows | ------------------------+--------------------- Changes (by dustin): * status: new => closed * resolution: => fixed Comment: Fixed in https://github.com/buildbot/buildbot/pull/992 -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Mon Dec 9 04:53:11 2013 From: trac at buildbot.net (Buildbot trac) Date: Mon, 09 Dec 2013 04:53:11 -0000 Subject: [Buildbot-commits] [Buildbot] #2529: GitPoller Splits Changed Files list on spaces instead of newline In-Reply-To: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> References: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> Message-ID: <061.d9be706a4813ccac9719db4032dab063@buildbot.net> #2529: GitPoller Splits Changed Files list on spaces instead of newline ---------------------------+------------------------ Reporter: Jeremy.Cornett | Owner: Type: defect | Status: new Priority: minor | Milestone: undecided Version: 0.8.7p1 | Resolution: Keywords: | ---------------------------+------------------------ Comment (by spikeekips@?): Ok, frankly to say, I am not good at testing under twisted trial, but I tried to follow the existing testing rules.:) See the `fixed_gitpoller_changes_with_space.patch` patch. -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Tue Dec 10 03:13:20 2013 From: noreply at github.com (GitHub) Date: Mon, 09 Dec 2013 19:13:20 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] d4e772: Tests: add new unit tests for SlaveStatus Message-ID: <52a686d0dab74_159b11c3d504806a@hookshot-fe4-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: d4e772041d0784cea8a8ee3b4e497799f10a3532 https://github.com/buildbot/buildbot/commit/d4e772041d0784cea8a8ee3b4e497799f10a3532 Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: A master/buildbot/test/unit/test_status_slave.py Log Message: ----------- Tests: add new unit tests for SlaveStatus A few more tests in order to test Buildslave.status ... yes it's going away, but doenst hurt to have tests :) Commit: 221d949d96fb9d2e7120d6762ca74c641d127928 https://github.com/buildbot/buildbot/commit/221d949d96fb9d2e7120d6762ca74c641d127928 Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/status/slave.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_status_slave.py Log Message: ----------- Slave: add 'info' dictionary Make the 'info' dictionary more public and provide hooks to update it and set it Commit: 331eb300798ac37a53d0937116ff1021635e7466 https://github.com/buildbot/buildbot/commit/331eb300798ac37a53d0937116ff1021635e7466 Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/steps/master.py Log Message: ----------- SetSlaveInfo step to correspond to SetProperties Commit: 3bd12ed28568593f335f50699e5e975ddd3f64ce https://github.com/buildbot/buildbot/commit/3bd12ed28568593f335f50699e5e975ddd3f64ce Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/process/properties.py M master/buildbot/test/unit/test_process_properties.py Log Message: ----------- Interpolate("%(slave:XXXX)s") Commit: ffd92e2741de5630ce13023f29375ca858b7e281 https://github.com/buildbot/buildbot/commit/ffd92e2741de5630ce13023f29375ca858b7e281 Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst M master/docs/manual/cfg-properties.rst M master/docs/relnotes/index.rst Log Message: ----------- SlaveInfo: doc in progress Commit: fbda3d3a56ed319bb8c38c7b5457a7c7af4ad525 https://github.com/buildbot/buildbot/commit/fbda3d3a56ed319bb8c38c7b5457a7c7af4ad525 Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/test/unit/test_status_slave.py Log Message: ----------- Fix Travis issue: duplicate function. The other function seemed bogus and I think was a relic. Commit: ec2b1bc1015408132e8639442b4d68c1f51cc72e https://github.com/buildbot/buildbot/commit/ec2b1bc1015408132e8639442b4d68c1f51cc72e Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/status/slave.py M master/buildbot/steps/master.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_process_properties.py M master/buildbot/test/unit/test_status_slave.py Log Message: ----------- SlaveInfo: fix pep8 issues Commit: 1c5973413aa3b7e5f2f197b488cd58206b7ac057 https://github.com/buildbot/buildbot/commit/1c5973413aa3b7e5f2f197b488cd58206b7ac057 Author: Dustin J. Mitchell Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/process/properties.py M master/buildbot/status/slave.py M master/buildbot/steps/master.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_process_properties.py A master/buildbot/test/unit/test_status_slave.py M master/docs/manual/cfg-buildsteps.rst M master/docs/manual/cfg-properties.rst M master/docs/relnotes/index.rst Log Message: ----------- Merge branch 'SlaveInfo' of git://github.com/jaredgrubb/buildbot +autopep8 Compare: https://github.com/buildbot/buildbot/compare/bf5c148e7b42...1c5973413aa3 From noreply at github.com Tue Dec 10 03:35:13 2013 From: noreply at github.com (GitHub) Date: Mon, 09 Dec 2013 19:35:13 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] ade49a: Fix split files with spaces Message-ID: <52a68bf124ee2_31f413a3d50181463@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: ade49a7b6175c3735ddf5bbe90992bc1684157a8 https://github.com/buildbot/buildbot/commit/ade49a7b6175c3735ddf5bbe90992bc1684157a8 Author: Aleksey Vasenev Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/changes/gitpoller.py Log Message: ----------- Fix split files with spaces Commit: 2c3b6eb7609df840f778c1ac5e0d872ee48e76eb https://github.com/buildbot/buildbot/commit/2c3b6eb7609df840f778c1ac5e0d872ee48e76eb Author: Aleksey Vasenev Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/changes/gitpoller.py Log Message: ----------- Decode comment and file path Commit: 5838173fa07c35aa1bb6c0ef7cba98632ed5dc19 https://github.com/buildbot/buildbot/commit/5838173fa07c35aa1bb6c0ef7cba98632ed5dc19 Author: Aleksey Vasenev Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_gitpoller.py Log Message: ----------- Tests now check file path with spaces and octal encoded Commit: 98fdcbbd0136b6334fad9b8ed3133ef41a343bef https://github.com/buildbot/buildbot/commit/98fdcbbd0136b6334fad9b8ed3133ef41a343bef Author: Jeremy Cornett Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/changes/gitpoller.py Log Message: ----------- Make GitPoller break filenames on newlines List of changed files was incorrectly splitting on spaces, instead of just newlines. That was breaking a single file's path into multiple lines instead of displaying it one just one. Commit: 3cfda4a55d974d4c08e79aadd983629b77c5d7f6 https://github.com/buildbot/buildbot/commit/3cfda4a55d974d4c08e79aadd983629b77c5d7f6 Author: Spike^ekipS Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_gitpoller.py Log Message: ----------- fixed_gitpoller_changes_with_space.patch Commit: 4450ae355a2134dc4ad31a9311db812fde9d2c64 https://github.com/buildbot/buildbot/commit/4450ae355a2134dc4ad31a9311db812fde9d2c64 Author: Dustin J. Mitchell Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/changes/gitpoller.py M master/buildbot/test/unit/test_changes_gitpoller.py Log Message: ----------- Merge branch 'bug2529' +autopep8 Commit: 3c38bd33b8f31e5c7e33a929fd9fe640c9cb05de https://github.com/buildbot/buildbot/commit/3c38bd33b8f31e5c7e33a929fd9fe640c9cb05de Author: Dustin J. Mitchell Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/changes/gitpoller.py M master/buildbot/test/unit/test_changes_gitpoller.py Log Message: ----------- Merge branch 'git_improvements' of git://github.com/Ratio2/buildbot +autopep8 Compare: https://github.com/buildbot/buildbot/compare/1c5973413aa3...3c38bd33b8f3 From trac at buildbot.net Tue Dec 10 03:35:57 2013 From: trac at buildbot.net (Buildbot trac) Date: Tue, 10 Dec 2013 03:35:57 -0000 Subject: [Buildbot-commits] [Buildbot] #2529: GitPoller Splits Changed Files list on spaces instead of newline In-Reply-To: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> References: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> Message-ID: <061.59adbd0c45d308c8b6347dc26e68121e@buildbot.net> #2529: GitPoller Splits Changed Files list on spaces instead of newline ---------------------------+------------------------ Reporter: Jeremy.Cornett | Owner: Type: defect | Status: closed Priority: minor | Milestone: undecided Version: 0.8.7p1 | Resolution: fixed Keywords: | ---------------------------+------------------------ Changes (by dustin): * status: new => closed * resolution: => fixed Comment: Merged, just before https://github.com/buildbot/buildbot/pull/999 -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Tue Dec 10 03:36:09 2013 From: trac at buildbot.net (Buildbot trac) Date: Tue, 10 Dec 2013 03:36:09 -0000 Subject: [Buildbot-commits] [Buildbot] #2529: GitPoller Splits Changed Files list on spaces instead of newline In-Reply-To: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> References: <046.60d91b58e38f9a67cbe67b8f9f1f33a5@buildbot.net> Message-ID: <061.1b0f0bdee49aeb92fe7ded16ac1f5f77@buildbot.net> #2529: GitPoller Splits Changed Files list on spaces instead of newline ---------------------------+--------------------- Reporter: Jeremy.Cornett | Owner: Type: defect | Status: closed Priority: minor | Milestone: 0.8.9 Version: 0.8.7p1 | Resolution: fixed Keywords: | ---------------------------+--------------------- Changes (by dustin): * milestone: undecided => 0.8.9 -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Tue Dec 10 03:45:47 2013 From: noreply at github.com (GitHub) Date: Mon, 09 Dec 2013 19:45:47 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 7c7958: Rename MsBuild to MsBuild4 to specify version numb... Message-ID: <52a68e6b889a8_2e9ce29d4811112c@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 7c795835c18d7554cc4e01939f4cd99c9e38aac3 https://github.com/buildbot/buildbot/commit/7c795835c18d7554cc4e01939f4cd99c9e38aac3 Author: Steve Hoelzer Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/steps/vstudio.py Log Message: ----------- Rename MsBuild to MsBuild4 to specify version number Also add MsBuild alias for backward compatibility Commit: a004abf33d600a02642a36603351e0ffd9060a11 https://github.com/buildbot/buildbot/commit/a004abf33d600a02642a36603351e0ffd9060a11 Author: Steve Hoelzer Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/steps/vstudio.py Log Message: ----------- Simplify MsBuild12 by factoring out path to vcvarsall.bat Commit: cdc85287c02c8ab1d69c3bb48e2444d065eee2bc https://github.com/buildbot/buildbot/commit/cdc85287c02c8ab1d69c3bb48e2444d065eee2bc Author: Dustin J. Mitchell Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/steps/vstudio.py Log Message: ----------- Merge branch 'master' of git://github.com/shoelzer/buildbot Compare: https://github.com/buildbot/buildbot/compare/3c38bd33b8f3...cdc85287c02c From noreply at github.com Tue Dec 10 14:06:17 2013 From: noreply at github.com (GitHub) Date: Tue, 10 Dec 2013 06:06:17 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 2b3762: Fix use of uninitialized variable Message-ID: <52a71fd92e3e8_16e987d58286fc@hookshot-fe4-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 2b3762d36e80e5c4075390b22781d0fa89211563 https://github.com/buildbot/buildbot/commit/2b3762d36e80e5c4075390b22781d0fa89211563 Author: Aleksey Vasenev Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M master/buildbot/process/users/manual.py Log Message: ----------- Fix use of uninitialized variable Commit: 5614e7c9cbefd90db6a28994bcee17b759c7d459 https://github.com/buildbot/buildbot/commit/5614e7c9cbefd90db6a28994bcee17b759c7d459 Author: Dustin J. Mitchell Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M master/buildbot/process/users/manual.py Log Message: ----------- Merge branch 'fix_use_of_uninitialized_variable' of git://github.com/Ratio2/buildbot Compare: https://github.com/buildbot/buildbot/compare/cdc85287c02c...5614e7c9cbef From noreply at github.com Wed Dec 11 00:57:28 2013 From: noreply at github.com (GitHub) Date: Tue, 10 Dec 2013 16:57:28 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 89839d: remove spurious print Message-ID: <52a7b878ba549_74c511e7d5499671@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 89839d8f8d2f2ec02d8b52056651aca744285410 https://github.com/buildbot/buildbot/commit/89839d8f8d2f2ec02d8b52056651aca744285410 Author: Dustin J. Mitchell Date: 2013-12-02 (Mon, 02 Dec 2013) Changed paths: M master/buildbot/process/remotecommand.py Log Message: ----------- remove spurious print Commit: 3ffd18b808826f68e14ede4cd7ab55e5b2eed70f https://github.com/buildbot/buildbot/commit/3ffd18b808826f68e14ede4cd7ab55e5b2eed70f Author: Dustin J. Mitchell Date: 2013-12-03 (Tue, 03 Dec 2013) Changed paths: M master/buildbot/process/buildstep.py M master/buildbot/test/unit/test_process_buildstep.py M master/docs/developer/cls-buildsteps.rst M master/docs/manual/customization.rst Log Message: ----------- Introduce a 'run' method for steps, which simply returns the result This does away with the complex need to call self.finished or self.failed Commit: 9d913980376fc18391305cbca590d2fede783117 https://github.com/buildbot/buildbot/commit/9d913980376fc18391305cbca590d2fede783117 Author: Dustin J. Mitchell Date: 2013-12-03 (Tue, 03 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/process/build.py M master/buildbot/process/builder.py M master/buildbot/process/buildstep.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/fake/fakemaster.py M master/buildbot/test/fake/fakeprotocol.py M master/buildbot/test/fake/slave.py A master/buildbot/test/integration/test_custom_buildstep.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_process_buildstep.py M master/buildbot/test/unit/test_steps_slave.py M master/buildbot/test/util/steps.py M master/docs/developer/cls-buildsteps.rst Log Message: ----------- Integration tests for custom buildsteps This includes updates to fakes and interface tests for them Commit: 774b0ccf1d817d3c78c4630d47df167dca373c9f https://github.com/buildbot/buildbot/commit/774b0ccf1d817d3c78c4630d47df167dca373c9f Author: Dustin J. Mitchell Date: 2013-12-03 (Tue, 03 Dec 2013) Changed paths: M master/buildbot/process/buildstep.py Log Message: ----------- support catching deferreds from several BuildStep methods when old-style steps call them synchronously Specifically: * addCompleteLog * addHTMLLog * addURL Commit: 8e78347fb0e3f743010ad97822fbcb39b2f7a510 https://github.com/buildbot/buildbot/commit/8e78347fb0e3f743010ad97822fbcb39b2f7a510 Author: Dustin J. Mitchell Date: 2013-12-03 (Tue, 03 Dec 2013) Changed paths: A master/buildbot/process/log.py M master/buildbot/test/fake/fakedata.py R master/buildbot/test/unit/test_logfile.py A master/buildbot/test/unit/test_process_log.py M master/docs/developer/classes.rst A master/docs/developer/cls-log.rst Log Message: ----------- add a process Log class hierarchy to interface with steps Commit: e24f6ed887a80c70f3b41fe003f3374fb29fc4c3 https://github.com/buildbot/buildbot/commit/e24f6ed887a80c70f3b41fe003f3374fb29fc4c3 Author: Dustin J. Mitchell Date: 2013-12-03 (Tue, 03 Dec 2013) Changed paths: M master/buildbot/interfaces.py M master/buildbot/process/buildstep.py M master/buildbot/process/log.py M master/buildbot/process/logobserver.py M master/buildbot/process/remotecommand.py M master/buildbot/status/build.py M master/buildbot/status/buildstep.py M master/buildbot/status/client.py M master/buildbot/status/logfile.py M master/buildbot/status/master.py M master/buildbot/steps/python.py M master/buildbot/steps/shell.py M master/buildbot/steps/vstudio.py A master/buildbot/test/fake/logfile.py M master/buildbot/test/fake/remotecommand.py M master/buildbot/test/integration/test_custom_buildstep.py M master/buildbot/test/integration/test_upgrade.py M master/buildbot/test/unit/test_process_buildstep.py M master/buildbot/test/unit/test_process_log.py M master/buildbot/test/unit/test_status_buildstep.py M master/buildbot/test/unit/test_status_logfile.py M master/buildbot/test/unit/test_steps_python.py M master/buildbot/test/unit/test_steps_shell.py M master/buildbot/test/util/steps.py M master/docs/developer/cls-buildsteps.rst Log Message: ----------- update step methods to be async, but still using status API ..so, no data API calls This contains a hack to allow tests for existing steps that use now-removed methods to continue to pass, but with warnings. Those will need to be fixed in a subsequent commit. Includes work by: Pierre Tardy Commit: 4ec44e125777e22102d4f7141b2df92b053e9536 https://github.com/buildbot/buildbot/commit/4ec44e125777e22102d4f7141b2df92b053e9536 Author: Dustin J. Mitchell Date: 2013-12-03 (Tue, 03 Dec 2013) Changed paths: M README.md M master/docs/developer/cls-buildsteps.rst M master/docs/relnotes/index.rst Log Message: ----------- docs for rewriting old to new style steps Commit: 6d474877d61bb588a099e4d6626d3e38bcfcaf01 https://github.com/buildbot/buildbot/commit/6d474877d61bb588a099e4d6626d3e38bcfcaf01 Author: Dustin J. Mitchell Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M master/buildbot/process/builder.py M master/buildbot/process/buildstep.py M master/docs/relnotes/index.rst Log Message: ----------- fixes from review Commit: 8ec3b549a5c1e98691cb3a3be826ab061cc85eec https://github.com/buildbot/buildbot/commit/8ec3b549a5c1e98691cb3a3be826ab061cc85eec Author: Dustin J. Mitchell Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M README.md M master/buildbot/process/build.py M master/buildbot/process/buildstep.py M master/buildbot/steps/python.py M master/buildbot/steps/shell.py M master/buildbot/steps/vstudio.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_process_buildstep.py M master/buildbot/test/unit/test_steps_python.py M master/buildbot/test/unit/test_steps_shell.py M master/buildbot/test/util/steps.py M master/docs/developer/classes.rst A master/docs/developer/cls-build.rst M master/docs/developer/cls-buildsteps.rst M master/docs/manual/customization.rst M master/docs/relnotes/index.rst Log Message: ----------- bring back step statistics Commit: 43fd2867f0dc0c496e66cb65d563985ffd4b4fde https://github.com/buildbot/buildbot/commit/43fd2867f0dc0c496e66cb65d563985ffd4b4fde Author: Dustin J. Mitchell Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M README.md M master/buildbot/buildslave/base.py M master/buildbot/interfaces.py M master/buildbot/process/build.py M master/buildbot/process/builder.py M master/buildbot/process/buildstep.py A master/buildbot/process/log.py M master/buildbot/process/logobserver.py M master/buildbot/process/remotecommand.py M master/buildbot/status/build.py M master/buildbot/status/buildstep.py M master/buildbot/status/client.py M master/buildbot/status/logfile.py M master/buildbot/status/master.py M master/buildbot/steps/shell.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/fake/fakemaster.py M master/buildbot/test/fake/fakeprotocol.py A master/buildbot/test/fake/logfile.py M master/buildbot/test/fake/remotecommand.py M master/buildbot/test/fake/slave.py A master/buildbot/test/integration/test_custom_buildstep.py M master/buildbot/test/integration/test_upgrade.py M master/buildbot/test/unit/test_buildslave_base.py R master/buildbot/test/unit/test_logfile.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_process_buildstep.py A master/buildbot/test/unit/test_process_log.py M master/buildbot/test/unit/test_status_buildstep.py M master/buildbot/test/unit/test_status_logfile.py M master/buildbot/test/unit/test_steps_slave.py M master/buildbot/test/util/steps.py M master/docs/developer/classes.rst A master/docs/developer/cls-build.rst M master/docs/developer/cls-buildsteps.rst A master/docs/developer/cls-log.rst M master/docs/manual/customization.rst M master/docs/relnotes/index.rst Log Message: ----------- Merge branch '9/async-steps' into nine Compare: https://github.com/buildbot/buildbot/compare/47924c1fd426...43fd2867f0dc From trac at buildbot.net Wed Dec 11 13:28:15 2013 From: trac at buildbot.net (Buildbot trac) Date: Wed, 11 Dec 2013 13:28:15 -0000 Subject: [Buildbot-commits] [Buildbot] #2606: Trigger step consumes 2 build slots on slave Message-ID: <039.15a8d965c9a49563c6613690581a3e73@buildbot.net> #2606: Trigger step consumes 2 build slots on slave --------------------+----------------------- Reporter: otrempe | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: --------------------+----------------------- A build running on slave "A" has a trigger step with waitForFinish=True. The triggered build runs on slave "B". If slave "B" has max_builds=1, the triggered build will be pending forever. In order to start, max_builds must be set to 2. -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Wed Dec 11 14:38:56 2013 From: noreply at github.com (GitHub) Date: Wed, 11 Dec 2013 06:38:56 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] a486fa: fix common/validate's mktemp invocation Message-ID: <52a8790010c41_6336e2fd4c78071@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: a486fa390f02771a426911176d14e51ceed6b99a https://github.com/buildbot/buildbot/commit/a486fa390f02771a426911176d14e51ceed6b99a Author: Dustin J. Mitchell Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M common/validate.sh Log Message: ----------- fix common/validate's mktemp invocation Commit: f4183488b3df0b7f9e5326c906f0383aa18d3f4e https://github.com/buildbot/buildbot/commit/f4183488b3df0b7f9e5326c906f0383aa18d3f4e Author: Dustin J. Mitchell Date: 2013-12-11 (Wed, 11 Dec 2013) Changed paths: M master/buildbot/process/buildstep.py M master/buildbot/test/fake/logfile.py M master/buildbot/test/fake/remotecommand.py M master/buildbot/test/integration/test_custom_buildstep.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_process_buildstep.py M master/buildbot/test/unit/test_process_log.py M master/buildbot/test/util/steps.py Log Message: ----------- pep8/pylint fixes Commit: b2a94db4be42ef16398c3303ff85f56b29f69aa8 https://github.com/buildbot/buildbot/commit/b2a94db4be42ef16398c3303ff85f56b29f69aa8 Author: Dustin J. Mitchell Date: 2013-12-11 (Wed, 11 Dec 2013) Changed paths: M www/src/scripts/libs/lodash.js Log Message: ----------- fix lodash.js symlink for lodash-2.4.1 Compare: https://github.com/buildbot/buildbot/compare/43fd2867f0dc...b2a94db4be42 From trac at buildbot.net Thu Dec 12 03:58:57 2013 From: trac at buildbot.net (Buildbot trac) Date: Thu, 12 Dec 2013 03:58:57 -0000 Subject: [Buildbot-commits] [Buildbot] #2607: A lot of broken links and Jenkins instance in SuccessStories Message-ID: <036.1308bf05191fe2b1bb42c2ba657aa945@buildbot.net> #2607: A lot of broken links and Jenkins instance in SuccessStories -------------------+----------------------- Reporter: hgen | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: -------------------+----------------------- http://trac.buildbot.net/wiki/SuccessStories This is not encouraging new users. -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Fri Dec 13 18:54:05 2013 From: noreply at github.com (GitHub) Date: Fri, 13 Dec 2013 10:54:05 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 19e9c5: event enhancements Message-ID: <52ab57cdee8d_496398bd54818ce@hookshot-fe6-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 19e9c5bfd71a2f8ae3e81b499c8faabe56fab616 https://github.com/buildbot/buildbot/commit/19e9c5bfd71a2f8ae3e81b499c8faabe56fab616 Author: Pierre Tardy Date: 2013-12-13 (Fri, 13 Dec 2013) Changed paths: M master/buildbot/data/base.py M master/buildbot/data/builds.py M master/buildbot/data/buildsets.py M master/buildbot/data/changes.py M master/buildbot/data/connector.py M master/buildbot/data/masters.py M master/buildbot/db/connector.py M master/buildbot/master.py M master/buildbot/process/buildrequestdistributor.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/unit/test_data_base.py M master/buildbot/test/unit/test_data_builds.py M master/buildbot/test/unit/test_data_buildsets.py M master/buildbot/test/unit/test_test_util_validation.py M master/buildbot/test/util/validation.py M master/buildbot/util/pathmatch.py M master/buildbot/www/rest.py M master/docs/developer/data.rst M master/docs/developer/rtype-logchunk.rst Log Message: ----------- event enhancements This adds more coherency between the event system and the data system, so that the events are more coherent with the rest api. Eventually, the goal is that the events are always the same structure as the data for a same resource This simplifies a lot the system, and make the client much more easy This comes at a efficieny price. With this design, events will contain more data. messages are anyway very small, and probably negligible compared to the network load of logs, and slave communication Signed-off-by: Pierre Tardy Commit: 37fbc7cc6bae16992d05270f5a70ef4fce936441 https://github.com/buildbot/buildbot/commit/37fbc7cc6bae16992d05270f5a70ef4fce936441 Author: Pierre Tardy Date: 2013-12-13 (Fri, 13 Dec 2013) Changed paths: M README.md M master/buildbot/data/base.py M master/buildbot/data/builds.py M master/buildbot/data/connector.py M master/buildbot/db/connector.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/unit/test_data_base.py M master/buildbot/test/unit/test_data_builds.py M master/docs/developer/data.rst Log Message: ----------- fix doc and lint Compare: https://github.com/buildbot/buildbot/compare/b2a94db4be42...37fbc7cc6bae From noreply at github.com Fri Dec 13 19:06:25 2013 From: noreply at github.com (GitHub) Date: Fri, 13 Dec 2013 11:06:25 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] ed6df5: Buildrequest data api implementation Message-ID: <52ab5ab16cd_36e1709d4c877f5@hookshot-fe5-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: ed6df56dceae26a56b6fe59024bae159723f2230 https://github.com/buildbot/buildbot/commit/ed6df56dceae26a56b6fe59024bae159723f2230 Author: Olivier Monnier Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M master/buildbot/data/base.py A master/buildbot/data/buildrequests.py M master/buildbot/data/connector.py M master/buildbot/db/buildrequests.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/fake/fakedb.py A master/buildbot/test/unit/test_data_buildrequests.py M master/buildbot/test/unit/test_db_buildrequests.py M master/buildbot/test/unit/test_schedulers_triggerable.py M master/docs/developer/data.rst M master/docs/developer/db.rst A master/docs/developer/rtype-buildrequest.rst Log Message: ----------- Buildrequest data api implementation Updates: - Add buildrequest data api (including documentation, unit tests, fakedb and fakedata) - Change buildrequest db api 'mine' parameter to 'claimed_by_masterid' - Minor fixes and factorization in FakeBuildRequestsComponent Signed-off-by: Olivier Monnier Commit: 0f81d02e368f6b84cc33dfd6136573657e250ecb https://github.com/buildbot/buildbot/commit/0f81d02e368f6b84cc33dfd6136573657e250ecb Author: Olivier Monnier Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M master/buildbot/data/buildrequests.py M master/buildbot/db/buildrequests.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_data_buildrequests.py M master/buildbot/test/unit/test_db_buildrequests.py M master/docs/developer/db.rst M master/docs/developer/rtype-buildrequest.rst Log Message: ----------- Data API: add filter options to buildrequest collection endpoints Updates: - adding filters to the BuildRequestsEndpoint.get() method - replacing claimed='mine' option in buildrequest DB API, with claimed= Signed-off-by: Olivier Monnier Commit: cb099a899e033506ba2e2b1c5f5d000f8c77ef41 https://github.com/buildbot/buildbot/commit/cb099a899e033506ba2e2b1c5f5d000f8c77ef41 Author: Pierre Tardy Date: 2013-12-13 (Fri, 13 Dec 2013) Changed paths: M master/buildbot/data/base.py A master/buildbot/data/buildrequests.py M master/buildbot/data/connector.py M master/buildbot/db/buildrequests.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/fake/fakedb.py A master/buildbot/test/unit/test_data_buildrequests.py M master/buildbot/test/unit/test_db_buildrequests.py M master/buildbot/test/unit/test_schedulers_triggerable.py M master/docs/developer/data.rst M master/docs/developer/db.rst A master/docs/developer/rtype-buildrequest.rst Log Message: ----------- Merge branch 'buildrequest_data_api_doc' of https://github.com/omonnier/buildbot into events Conflicts: master/buildbot/data/base.py Compare: https://github.com/buildbot/buildbot/compare/37fbc7cc6bae...cb099a899e03 From noreply at github.com Fri Dec 13 19:16:59 2013 From: noreply at github.com (GitHub) Date: Fri, 13 Dec 2013 11:16:59 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 3b850f: fix about page Message-ID: <52ab5d2b90166_195712abd58240ab@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 3b850f9d0d289ab90b8e0265e1bfe9c19ce2c414 https://github.com/buildbot/buildbot/commit/3b850f9d0d289ab90b8e0265e1bfe9c19ce2c414 Author: Pierre Tardy Date: 2013-12-13 (Fri, 13 Dec 2013) Changed paths: M www/src/scripts/controllers/aboutController.coffee Log Message: ----------- fix about page with angular 1.2, no more magical unwrapping of promises! Signed-off-by: Pierre Tardy From noreply at github.com Fri Dec 13 23:16:12 2013 From: noreply at github.com (GitHub) Date: Fri, 13 Dec 2013 15:16:12 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] c1183b: Minor fixes in developer doc Message-ID: <52ab953c5282d_49d8545d581144b1@hookshot-fe6-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: c1183b1acc6cb4bb16b1383d899fa63a62f7b4bd https://github.com/buildbot/buildbot/commit/c1183b1acc6cb4bb16b1383d899fa63a62f7b4bd Author: Olivier Monnier Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M master/docs/conf.py M master/docs/developer/data.rst M master/docs/developer/db.rst M master/docs/developer/rtype-build.rst M master/docs/developer/rtype-buildset.rst M master/docs/developer/www.rst Log Message: ----------- Minor fixes in developer doc Also enabling todos display in sphinx configuration Signed-off-by: Olivier Monnier Commit: 6a57249b77ea5cd3db7e6609e0113c6c68702acb https://github.com/buildbot/buildbot/commit/6a57249b77ea5cd3db7e6609e0113c6c68702acb Author: Dustin J. Mitchell Date: 2013-12-13 (Fri, 13 Dec 2013) Changed paths: M master/docs/conf.py M master/docs/developer/data.rst M master/docs/developer/db.rst M master/docs/developer/rtype-build.rst M master/docs/developer/rtype-buildset.rst M master/docs/developer/www.rst Log Message: ----------- Merge branch 'doc_fixes' of git://github.com/omonnier/buildbot into nine Compare: https://github.com/buildbot/buildbot/compare/3b850f9d0d28...6a57249b77ea From noreply at github.com Sat Dec 14 15:19:44 2013 From: noreply at github.com (GitHub) Date: Sat, 14 Dec 2013 07:19:44 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 187e46: Made small stylistic changes Message-ID: <52ac77108d8b4_5f19767d4899195@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 187e46634513d18f4d4ea758614d99d9f82e886c https://github.com/buildbot/buildbot/commit/187e46634513d18f4d4ea758614d99d9f82e886c Author: Alexandr Plesovskih Date: 2013-11-25 (Mon, 25 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- Made small stylistic changes Commit: dfe6f4f31dee6f186e650989e6e8a7cbe9b62281 https://github.com/buildbot/buildbot/commit/dfe6f4f31dee6f186e650989e6e8a7cbe9b62281 Author: Alexandr Plesovskih Date: 2013-11-25 (Mon, 25 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- add event with change universal handler Commit: 6993e5f567ec5a856643474b305fceb3bd12c0eb https://github.com/buildbot/buildbot/commit/6993e5f567ec5a856643474b305fceb3bd12c0eb Author: Alexandr Plesovskih Date: 2013-11-26 (Tue, 26 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- add event handle properties Commit: eb506f7dfa1dd9c8ecb2cbcad7e0d1befd6c5a47 https://github.com/buildbot/buildbot/commit/eb506f7dfa1dd9c8ecb2cbcad7e0d1befd6c5a47 Author: Alexandr Plesovskih Date: 2013-11-26 (Tue, 26 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- Fix stupid bug Commit: b1b3144c37d9c4032e05e9051459f55412f1b14f https://github.com/buildbot/buildbot/commit/b1b3144c37d9c4032e05e9051459f55412f1b14f Author: Alexandr Plesovskih Date: 2013-11-26 (Tue, 26 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- Fix stupid bug V2 Commit: 8f3f7b7fec111ec09b27c088d84a7ab25b166a39 https://github.com/buildbot/buildbot/commit/8f3f7b7fec111ec09b27c088d84a7ab25b166a39 Author: Alexandr Plesovskih Date: 2013-11-28 (Thu, 28 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- Fix. List argument, bad way Commit: d33db6257028ba068eaba119363d54e191944bbd https://github.com/buildbot/buildbot/commit/d33db6257028ba068eaba119363d54e191944bbd Author: Alexandr Plesovskih Date: 2013-11-28 (Thu, 28 Nov 2013) Changed paths: M .travis.yml M CONTRIBUTING.md M MAINTAINERS.txt A common/fiximports.py A common/hooks/post-commit A common/merge_and_pep8.sh M common/pep8rc M common/pylintrc A common/test_fiximports.py M common/validate.sh M master/buildbot/buildrequest.py M master/buildbot/buildslave/__init__.py M master/buildbot/buildslave/base.py M master/buildbot/buildslave/ec2.py M master/buildbot/buildslave/libvirt.py M master/buildbot/buildslave/openstack.py M master/buildbot/changes/base.py M master/buildbot/changes/bonsaipoller.py M master/buildbot/changes/changes.py M master/buildbot/changes/filter.py M master/buildbot/changes/gitpoller.py M master/buildbot/changes/hgbuildbot.py M master/buildbot/changes/hgpoller.py M master/buildbot/changes/mail.py M master/buildbot/changes/manager.py M master/buildbot/changes/p4poller.py M master/buildbot/changes/pb.py M master/buildbot/changes/svnpoller.py M master/buildbot/clients/base.py M master/buildbot/clients/debug.py M master/buildbot/clients/gtkPanes.py M master/buildbot/clients/sendchange.py M master/buildbot/clients/text.py M master/buildbot/clients/tryclient.py M master/buildbot/clients/usersclient.py M master/buildbot/config.py M master/buildbot/db/base.py M master/buildbot/db/buildrequests.py M master/buildbot/db/builds.py M master/buildbot/db/buildsets.py M master/buildbot/db/buildslaves.py M master/buildbot/db/changes.py M master/buildbot/db/connector.py M master/buildbot/db/enginestrategy.py M master/buildbot/db/exceptions.py M master/buildbot/db/migrate/versions/001_initial.py M master/buildbot/db/migrate/versions/002_add_proj_repo.py M master/buildbot/db/migrate/versions/003_scheduler_class_name.py M master/buildbot/db/migrate/versions/004_add_autoincrement.py M master/buildbot/db/migrate/versions/005_add_indexes.py M master/buildbot/db/migrate/versions/006_drop_last_access.py M master/buildbot/db/migrate/versions/007_add_object_tables.py M master/buildbot/db/migrate/versions/008_add_scheduler_changes_index.py M master/buildbot/db/migrate/versions/009_add_patch_author.py M master/buildbot/db/migrate/versions/010_fix_column_lengths.py M master/buildbot/db/migrate/versions/011_add_buildrequest_claims.py M master/buildbot/db/migrate/versions/012_add_users_table.py M master/buildbot/db/migrate/versions/013_remove_schedulers_state_column.py M master/buildbot/db/migrate/versions/014_add_users_userpass_columns.py M master/buildbot/db/migrate/versions/015_remove_bad_master_objectid.py M master/buildbot/db/migrate/versions/016_restore_buildrequest_indices.py M master/buildbot/db/migrate/versions/017_restore_other_indices.py M master/buildbot/db/migrate/versions/018_add_sourcestampset.py M master/buildbot/db/migrate/versions/019_merge_schedulers_to_objects.py M master/buildbot/db/migrate/versions/020_remove_change_links.py M master/buildbot/db/migrate/versions/021_fix_postgres_sequences.py M master/buildbot/db/migrate/versions/022_add_codebase.py M master/buildbot/db/migrate/versions/023_increase_comments_property_lengths.py M master/buildbot/db/migrate/versions/024_add_buildslaves_table.py M master/buildbot/db/model.py M master/buildbot/db/pool.py M master/buildbot/db/schedulers.py M master/buildbot/db/sourcestamps.py M master/buildbot/db/sourcestampsets.py M master/buildbot/db/state.py M master/buildbot/db/types/json.py M master/buildbot/db/users.py M master/buildbot/ec2buildslave.py M master/buildbot/interfaces.py M master/buildbot/libvirtbuildslave.py M master/buildbot/locks.py M master/buildbot/manhole.py M master/buildbot/master.py M master/buildbot/monkeypatches/__init__.py M master/buildbot/monkeypatches/bug4520.py M master/buildbot/monkeypatches/bug4881.py M master/buildbot/monkeypatches/bug5079.py M master/buildbot/monkeypatches/decorators.py M master/buildbot/monkeypatches/gatherResults.py M master/buildbot/monkeypatches/python14653.py M master/buildbot/monkeypatches/servicechecks.py M master/buildbot/monkeypatches/sqlalchemy2189.py M master/buildbot/monkeypatches/sqlalchemy2364.py M master/buildbot/monkeypatches/testcase_assert.py M master/buildbot/monkeypatches/testcase_patch.py M master/buildbot/monkeypatches/testcase_synctest.py M master/buildbot/pbmanager.py M master/buildbot/pbutil.py M master/buildbot/process/base.py M master/buildbot/process/botmaster.py M master/buildbot/process/build.py M master/buildbot/process/builder.py M master/buildbot/process/buildrequest.py M master/buildbot/process/buildrequestdistributor.py M master/buildbot/process/buildstep.py M master/buildbot/process/cache.py M master/buildbot/process/debug.py M master/buildbot/process/factory.py M master/buildbot/process/metrics.py M master/buildbot/process/properties.py M master/buildbot/process/slavebuilder.py M master/buildbot/process/subunitlogobserver.py M master/buildbot/process/users/manager.py M master/buildbot/process/users/manual.py M master/buildbot/process/users/users.py M master/buildbot/revlinks.py M master/buildbot/scheduler.py M master/buildbot/schedulers/base.py M master/buildbot/schedulers/basic.py M master/buildbot/schedulers/dependent.py M master/buildbot/schedulers/filter.py M master/buildbot/schedulers/forcesched.py M master/buildbot/schedulers/manager.py M master/buildbot/schedulers/timed.py M master/buildbot/schedulers/triggerable.py M master/buildbot/schedulers/trysched.py M master/buildbot/scripts/base.py M master/buildbot/scripts/buildbot_tac.tmpl M master/buildbot/scripts/checkconfig.py M master/buildbot/scripts/create_master.py M master/buildbot/scripts/debugclient.py M master/buildbot/scripts/logwatcher.py M master/buildbot/scripts/reconfig.py M master/buildbot/scripts/restart.py M master/buildbot/scripts/runner.py M master/buildbot/scripts/sendchange.py M master/buildbot/scripts/start.py M master/buildbot/scripts/statusgui.py M master/buildbot/scripts/statuslog.py M master/buildbot/scripts/stop.py M master/buildbot/scripts/trycmd.py M master/buildbot/scripts/tryserver.py M master/buildbot/scripts/upgrade_master.py M master/buildbot/scripts/user.py M master/buildbot/sourcestamp.py M master/buildbot/status/__init__.py M master/buildbot/status/base.py M master/buildbot/status/build.py M master/buildbot/status/builder.py M master/buildbot/status/buildrequest.py M master/buildbot/status/buildset.py M master/buildbot/status/buildstep.py M master/buildbot/status/client.py M master/buildbot/status/event.py M master/buildbot/status/github.py M master/buildbot/status/logfile.py M master/buildbot/status/mail.py M master/buildbot/status/master.py M master/buildbot/status/persistent_queue.py M master/buildbot/status/progress.py M master/buildbot/status/results.py M master/buildbot/status/slave.py M master/buildbot/status/status_gerrit.py M master/buildbot/status/status_push.py M master/buildbot/status/testresult.py M master/buildbot/status/tinderbox.py M master/buildbot/status/web/about.py M master/buildbot/status/web/auth.py M master/buildbot/status/web/authz.py M master/buildbot/status/web/base.py M master/buildbot/status/web/baseweb.py 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/change_hook.py M master/buildbot/status/web/changes.py M master/buildbot/status/web/console.py M master/buildbot/status/web/feeds.py M master/buildbot/status/web/grid.py M master/buildbot/status/web/hooks/__init__.py M master/buildbot/status/web/hooks/base.py M master/buildbot/status/web/hooks/github.py M master/buildbot/status/web/hooks/gitlab.py M master/buildbot/status/web/hooks/gitorious.py M master/buildbot/status/web/hooks/googlecode.py M master/buildbot/status/web/hooks/poller.py M master/buildbot/status/web/logs.py M master/buildbot/status/web/olpb.py M master/buildbot/status/web/pngstatus.py M master/buildbot/status/web/root.py M master/buildbot/status/web/session.py M master/buildbot/status/web/slaves.py M master/buildbot/status/web/status_json.py M master/buildbot/status/web/step.py M master/buildbot/status/web/templates/forms.html M master/buildbot/status/web/templates/grid_macros.html M master/buildbot/status/web/templates/waterfallhelp.html M master/buildbot/status/web/tests.py M master/buildbot/status/web/users.py M master/buildbot/status/web/waterfall.py M master/buildbot/status/words.py M master/buildbot/steps/http.py M master/buildbot/steps/master.py M master/buildbot/steps/maxq.py M master/buildbot/steps/mswin.py M master/buildbot/steps/mtrlogobserver.py M master/buildbot/steps/package/deb/lintian.py M master/buildbot/steps/package/deb/pbuilder.py M master/buildbot/steps/package/rpm/__init__.py M master/buildbot/steps/package/rpm/mock.py M master/buildbot/steps/package/rpm/rpmbuild.py M master/buildbot/steps/package/rpm/rpmlint.py M master/buildbot/steps/package/rpm/rpmspec.py M master/buildbot/steps/python.py M master/buildbot/steps/python_twisted.py M master/buildbot/steps/shell.py M master/buildbot/steps/slave.py M master/buildbot/steps/source/__init__.py M master/buildbot/steps/source/base.py M master/buildbot/steps/source/bzr.py M master/buildbot/steps/source/cvs.py M master/buildbot/steps/source/darcs.py M master/buildbot/steps/source/gerrit.py M master/buildbot/steps/source/git.py M master/buildbot/steps/source/mercurial.py M master/buildbot/steps/source/mtn.py M master/buildbot/steps/source/oldsource.py M master/buildbot/steps/source/p4.py M master/buildbot/steps/source/repo.py M master/buildbot/steps/source/svn.py M master/buildbot/steps/subunit.py M master/buildbot/steps/transfer.py M master/buildbot/steps/trigger.py M master/buildbot/steps/vstudio.py M master/buildbot/test/__init__.py M master/buildbot/test/fake/botmaster.py M master/buildbot/test/fake/fakebuild.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/fake/fakemaster.py M master/buildbot/test/fake/libvirt.py M master/buildbot/test/fake/openstack.py M master/buildbot/test/fake/pbmanager.py M master/buildbot/test/fake/remotecommand.py M master/buildbot/test/fake/slave.py M master/buildbot/test/fake/state.py M master/buildbot/test/fake/web.py M master/buildbot/test/fuzz/test_lru.py M master/buildbot/test/integration/test_configs.py M master/buildbot/test/integration/test_master.py M master/buildbot/test/integration/test_slave_comm.py M master/buildbot/test/integration/test_upgrade.py M master/buildbot/test/interfaces/test_logfile.py M master/buildbot/test/interfaces/test_remotecommand.py M master/buildbot/test/regressions/test_bad_change_properties_rows.py M master/buildbot/test/regressions/test_import_unicode_changes.py M master/buildbot/test/regressions/test_oldpaths.py M master/buildbot/test/regressions/test_shell_command_properties.py M master/buildbot/test/regressions/test_sourcestamp_revision.py M master/buildbot/test/regressions/test_steps_shell_WarningCountingShellCommand.py M master/buildbot/test/regressions/test_unpickling.py M master/buildbot/test/test_extra_coverage.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_buildslave_libvirt.py M master/buildbot/test/unit/test_buildslave_openstack.py M master/buildbot/test/unit/test_changes_base.py M master/buildbot/test/unit/test_changes_bonsaipoller.py M master/buildbot/test/unit/test_changes_changes.py M master/buildbot/test/unit/test_changes_filter.py M master/buildbot/test/unit/test_changes_gerritchangesource.py M master/buildbot/test/unit/test_changes_gitpoller.py M master/buildbot/test/unit/test_changes_hgpoller.py M master/buildbot/test/unit/test_changes_mail.py M master/buildbot/test/unit/test_changes_mail_CVSMaildirSource.py M master/buildbot/test/unit/test_changes_manager.py M master/buildbot/test/unit/test_changes_p4poller.py M master/buildbot/test/unit/test_changes_pb.py M master/buildbot/test/unit/test_changes_svnpoller.py M master/buildbot/test/unit/test_clients_sendchange.py M master/buildbot/test/unit/test_clients_usersclient.py M master/buildbot/test/unit/test_config.py M master/buildbot/test/unit/test_contrib_buildbot_cvs_mail.py M master/buildbot/test/unit/test_db_base.py M master/buildbot/test/unit/test_db_buildrequests.py M master/buildbot/test/unit/test_db_builds.py M master/buildbot/test/unit/test_db_buildsets.py M master/buildbot/test/unit/test_db_buildslaves.py M master/buildbot/test/unit/test_db_changes.py M master/buildbot/test/unit/test_db_connector.py M master/buildbot/test/unit/test_db_enginestrategy.py M master/buildbot/test/unit/test_db_migrate_versions_011_add_buildrequest_claims.py M master/buildbot/test/unit/test_db_migrate_versions_015_remove_bad_master_objectid.py M master/buildbot/test/unit/test_db_migrate_versions_016_restore_buildrequest_indices.py M master/buildbot/test/unit/test_db_migrate_versions_017_restore_other_indices.py M master/buildbot/test/unit/test_db_migrate_versions_018_add_sourcestampset.py M master/buildbot/test/unit/test_db_migrate_versions_019_merge_schedulers_to_objects.py M master/buildbot/test/unit/test_db_migrate_versions_020_remove_change_links.py M master/buildbot/test/unit/test_db_migrate_versions_021_fix_postgres_sequences.py M master/buildbot/test/unit/test_db_migrate_versions_022_add_codebase.py M master/buildbot/test/unit/test_db_migrate_versions_023_increase_comments_property_lengths.py M master/buildbot/test/unit/test_db_migrate_versions_024_add_buildslaves_table.py M master/buildbot/test/unit/test_db_model.py M master/buildbot/test/unit/test_db_pool.py M master/buildbot/test/unit/test_db_schedulers.py M master/buildbot/test/unit/test_db_sourcestamps.py M master/buildbot/test/unit/test_db_sourcestampsets.py M master/buildbot/test/unit/test_db_state.py M master/buildbot/test/unit/test_db_users.py M master/buildbot/test/unit/test_master.py M master/buildbot/test/unit/test_pbmanager.py M master/buildbot/test/unit/test_process_botmaster_BotMaster.py M master/buildbot/test/unit/test_process_botmaster_DuplicateSlaveArbitrator.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_process_builder.py M master/buildbot/test/unit/test_process_buildrequest.py M master/buildbot/test/unit/test_process_buildrequestdistributor_BuildRequestDistributor.py M master/buildbot/test/unit/test_process_buildstep.py M master/buildbot/test/unit/test_process_cache.py M master/buildbot/test/unit/test_process_debug.py M master/buildbot/test/unit/test_process_factory.py M master/buildbot/test/unit/test_process_metrics.py M master/buildbot/test/unit/test_process_properties.py M master/buildbot/test/unit/test_process_users_manager.py M master/buildbot/test/unit/test_process_users_manual.py M master/buildbot/test/unit/test_process_users_users.py M master/buildbot/test/unit/test_revlinks.py M master/buildbot/test/unit/test_schedulers_base.py M master/buildbot/test/unit/test_schedulers_basic.py M master/buildbot/test/unit/test_schedulers_dependent.py M master/buildbot/test/unit/test_schedulers_forcesched.py M master/buildbot/test/unit/test_schedulers_manager.py M master/buildbot/test/unit/test_schedulers_timed_Nightly.py M master/buildbot/test/unit/test_schedulers_timed_NightlyBase.py M master/buildbot/test/unit/test_schedulers_timed_NightlyTriggerable.py M master/buildbot/test/unit/test_schedulers_timed_Periodic.py M master/buildbot/test/unit/test_schedulers_timed_Timed.py M master/buildbot/test/unit/test_schedulers_triggerable.py M master/buildbot/test/unit/test_schedulers_trysched.py M master/buildbot/test/unit/test_scripts_base.py M master/buildbot/test/unit/test_scripts_checkconfig.py M master/buildbot/test/unit/test_scripts_create_master.py M master/buildbot/test/unit/test_scripts_restart.py M master/buildbot/test/unit/test_scripts_runner.py M master/buildbot/test/unit/test_scripts_sendchange.py M master/buildbot/test/unit/test_scripts_start.py M master/buildbot/test/unit/test_scripts_statuslog.py M master/buildbot/test/unit/test_scripts_stop.py M master/buildbot/test/unit/test_scripts_trycmd.py M master/buildbot/test/unit/test_scripts_tryserver.py M master/buildbot/test/unit/test_scripts_upgrade_master.py M master/buildbot/test/unit/test_scripts_user.py M master/buildbot/test/unit/test_sourcestamp.py M master/buildbot/test/unit/test_status_build.py M master/buildbot/test/unit/test_status_builder_cache.py M master/buildbot/test/unit/test_status_buildstep.py M master/buildbot/test/unit/test_status_client.py M master/buildbot/test/unit/test_status_github.py M master/buildbot/test/unit/test_status_logfile.py M master/buildbot/test/unit/test_status_mail.py M master/buildbot/test/unit/test_status_master.py M master/buildbot/test/unit/test_status_persistent_queue.py M master/buildbot/test/unit/test_status_progress.py M master/buildbot/test/unit/test_status_web_auth_HTPasswdAprAuth.py M master/buildbot/test/unit/test_status_web_auth_HTPasswdAuth.py M master/buildbot/test/unit/test_status_web_authz_Authz.py M master/buildbot/test/unit/test_status_web_base.py M master/buildbot/test/unit/test_status_web_hook.py M master/buildbot/test/unit/test_status_web_hooks_bitbucket.py M master/buildbot/test/unit/test_status_web_hooks_github.py M master/buildbot/test/unit/test_status_web_hooks_gitlab.py M master/buildbot/test/unit/test_status_web_hooks_gitorious.py M master/buildbot/test/unit/test_status_web_hooks_googlecode.py M master/buildbot/test/unit/test_status_web_hooks_poller.py M master/buildbot/test/unit/test_status_web_links.py M master/buildbot/test/unit/test_status_web_statuspng.py M master/buildbot/test/unit/test_status_words.py M master/buildbot/test/unit/test_steps_http.py M master/buildbot/test/unit/test_steps_master.py M master/buildbot/test/unit/test_steps_maxq.py M master/buildbot/test/unit/test_steps_mswin.py M master/buildbot/test/unit/test_steps_mtrlogobserver.py M master/buildbot/test/unit/test_steps_package_deb_lintian.py M master/buildbot/test/unit/test_steps_package_deb_pbuilder.py M master/buildbot/test/unit/test_steps_package_rpm_mock.py M master/buildbot/test/unit/test_steps_package_rpm_rpmbuild.py M master/buildbot/test/unit/test_steps_package_rpm_rpmlint.py M master/buildbot/test/unit/test_steps_python.py M master/buildbot/test/unit/test_steps_python_twisted.py M master/buildbot/test/unit/test_steps_shell.py M master/buildbot/test/unit/test_steps_slave.py M master/buildbot/test/unit/test_steps_source_base_Source.py M master/buildbot/test/unit/test_steps_source_bzr.py M master/buildbot/test/unit/test_steps_source_cvs.py M master/buildbot/test/unit/test_steps_source_darcs.py M master/buildbot/test/unit/test_steps_source_gerrit.py M master/buildbot/test/unit/test_steps_source_git.py M master/buildbot/test/unit/test_steps_source_mercurial.py M master/buildbot/test/unit/test_steps_source_mtn.py M master/buildbot/test/unit/test_steps_source_oldsource.py M master/buildbot/test/unit/test_steps_source_oldsource_ComputeRepositoryURL.py M master/buildbot/test/unit/test_steps_source_oldsource_Repo.py M master/buildbot/test/unit/test_steps_source_p4.py M master/buildbot/test/unit/test_steps_source_repo.py M master/buildbot/test/unit/test_steps_source_svn.py M master/buildbot/test/unit/test_steps_subunit.py M master/buildbot/test/unit/test_steps_transfer.py M master/buildbot/test/unit/test_steps_trigger.py M master/buildbot/test/unit/test_steps_vstudio.py M master/buildbot/test/unit/test_test_util_gpo.py M master/buildbot/test/unit/test_util.py M master/buildbot/test/unit/test_util_ComparableMixin.py M master/buildbot/test/unit/test_util_ansicodes.py M master/buildbot/test/unit/test_util_bbcollections.py M master/buildbot/test/unit/test_util_eventual.py M master/buildbot/test/unit/test_util_lru.py M master/buildbot/test/unit/test_util_maildir.py M master/buildbot/test/unit/test_util_misc.py M master/buildbot/test/unit/test_util_netstrings.py M master/buildbot/test/unit/test_util_sautils.py M master/buildbot/test/unit/test_util_state.py M master/buildbot/test/unit/test_util_subscriptions.py M master/buildbot/test/util/change_import.py M master/buildbot/test/util/changesource.py M master/buildbot/test/util/compat.py M master/buildbot/test/util/config.py M master/buildbot/test/util/connector_component.py M master/buildbot/test/util/db.py M master/buildbot/test/util/dirs.py A master/buildbot/test/util/fuzz.py M master/buildbot/test/util/gpo.py M master/buildbot/test/util/interfaces.py M master/buildbot/test/util/logging.py M master/buildbot/test/util/migration.py M master/buildbot/test/util/misc.py M master/buildbot/test/util/pbmanager.py M master/buildbot/test/util/properties.py M master/buildbot/test/util/querylog.py M master/buildbot/test/util/scheduler.py M master/buildbot/test/util/sourcesteps.py M master/buildbot/test/util/steps.py M master/buildbot/util/__init__.py M master/buildbot/util/bbcollections.py M master/buildbot/util/croniter.py M master/buildbot/util/eventual.py M master/buildbot/util/lru.py M master/buildbot/util/maildir.py M master/buildbot/util/misc.py M master/buildbot/util/netstrings.py M master/buildbot/util/sautils.py M master/buildbot/util/state.py M master/buildbot/util/subscription.py M master/contrib/SimpleConfig.py M master/contrib/bb_applet.py M master/contrib/bitbucket_buildbot.py M master/contrib/bk_buildbot.py M master/contrib/buildbot_cvs_mail.py M master/contrib/buildbot_json.py M master/contrib/bzr_buildbot.py M master/contrib/check_buildbot.py M master/contrib/coverage2text.py M master/contrib/darcs_buildbot.py M master/contrib/fakechange.py M master/contrib/fakemaster.py M master/contrib/fix_changes_pickle_encoding.py M master/contrib/git_buildbot.py M master/contrib/github_buildbot.py M master/contrib/googlecode_atom.py M master/contrib/post_build_request.py M master/contrib/run_maxq.py M master/contrib/svn_buildbot.py M master/contrib/svn_watcher.py M master/contrib/svnpoller.py M master/contrib/trac/bbwatcher/api.py M master/contrib/trac/bbwatcher/model.py M master/contrib/trac/bbwatcher/web_ui.py M master/contrib/trac/setup.py M master/contrib/viewcvspoll.py M master/contrib/webhook_status.py M master/contrib/windows/buildbot_service.py R master/docs/PyCon-2003/Makefile R master/docs/PyCon-2003/bb-slides.py R master/docs/PyCon-2003/source/buildbot.lore R master/docs/PyCon-2003/source/overview.svg R master/docs/PyCon-2003/source/slave.svg R master/docs/PyCon-2003/source/template.tpl R master/docs/PyCon-2003/stylesheet.css R master/docs/PyCon-2003/waterfall.png M master/docs/bbdocs/ext.py M master/docs/conf.py M master/docs/developer/master-slave.rst M master/docs/manual/cfg-buildfactories.rst M master/docs/manual/cfg-schedulers.rst M master/docs/manual/cfg-statustargets.rst M master/docs/relnotes/index.rst M master/setup.py M slave/buildslave/bot.py M slave/buildslave/commands/base.py M slave/buildslave/commands/bk.py M slave/buildslave/commands/bzr.py M slave/buildslave/commands/cvs.py M slave/buildslave/commands/darcs.py M slave/buildslave/commands/fs.py M slave/buildslave/commands/git.py M slave/buildslave/commands/hg.py M slave/buildslave/commands/mtn.py M slave/buildslave/commands/p4.py M slave/buildslave/commands/registry.py M slave/buildslave/commands/repo.py M slave/buildslave/commands/shell.py M slave/buildslave/commands/svn.py M slave/buildslave/commands/transfer.py M slave/buildslave/commands/utils.py M slave/buildslave/exceptions.py M slave/buildslave/interfaces.py M slave/buildslave/monkeypatches/__init__.py M slave/buildslave/monkeypatches/bug4881.py M slave/buildslave/monkeypatches/bug5079.py M slave/buildslave/monkeypatches/testcase_assert.py M slave/buildslave/pbutil.py M slave/buildslave/runprocess.py M slave/buildslave/scripts/base.py M slave/buildslave/scripts/create_slave.py M slave/buildslave/scripts/logwatcher.py M slave/buildslave/scripts/restart.py M slave/buildslave/scripts/runner.py M slave/buildslave/scripts/start.py M slave/buildslave/scripts/stop.py M slave/buildslave/scripts/upgrade_slave.py M slave/buildslave/test/__init__.py M slave/buildslave/test/fake/remote.py M slave/buildslave/test/fake/runprocess.py M slave/buildslave/test/fake/slavebuilder.py M slave/buildslave/test/test_extra_coverage.py M slave/buildslave/test/unit/runprocess-scripts.py M slave/buildslave/test/unit/test_bot.py M slave/buildslave/test/unit/test_bot_BuildSlave.py M slave/buildslave/test/unit/test_commands_base.py M slave/buildslave/test/unit/test_commands_bk.py M slave/buildslave/test/unit/test_commands_bzr.py M slave/buildslave/test/unit/test_commands_cvs.py M slave/buildslave/test/unit/test_commands_darcs.py M slave/buildslave/test/unit/test_commands_fs.py M slave/buildslave/test/unit/test_commands_git.py M slave/buildslave/test/unit/test_commands_hg.py M slave/buildslave/test/unit/test_commands_mtn.py M slave/buildslave/test/unit/test_commands_p4.py M slave/buildslave/test/unit/test_commands_registry.py M slave/buildslave/test/unit/test_commands_shell.py M slave/buildslave/test/unit/test_commands_svn.py M slave/buildslave/test/unit/test_commands_transfer.py M slave/buildslave/test/unit/test_commands_utils.py M slave/buildslave/test/unit/test_runprocess.py M slave/buildslave/test/unit/test_scripts_base.py M slave/buildslave/test/unit/test_scripts_create_slave.py M slave/buildslave/test/unit/test_scripts_restart.py M slave/buildslave/test/unit/test_scripts_runner.py M slave/buildslave/test/unit/test_scripts_start.py M slave/buildslave/test/unit/test_scripts_stop.py M slave/buildslave/test/unit/test_scripts_upgrade_slave.py M slave/buildslave/test/unit/test_util.py M slave/buildslave/test/util/command.py M slave/buildslave/test/util/compat.py M slave/buildslave/test/util/misc.py M slave/buildslave/test/util/sourcecommand.py M slave/buildslave/util.py M slave/contrib/windows/buildbot_service.py M slave/setup.py Log Message: ----------- Sync upstream Commit: c94c933230dc1d06b6f3516d50f0cab9c43f50ba https://github.com/buildbot/buildbot/commit/c94c933230dc1d06b6f3516d50f0cab9c43f50ba Author: Alexandr Plesovskih Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- Returned to old string formatting Commit: 10fd9103c14852ab7e90c0eb838664fa61853403 https://github.com/buildbot/buildbot/commit/10fd9103c14852ab7e90c0eb838664fa61853403 Author: Alexandr Plesovskih Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- microfix: string format Commit: c7a826eb6392acc4bc56b0e4708b11afdea02407 https://github.com/buildbot/buildbot/commit/c7a826eb6392acc4bc56b0e4708b11afdea02407 Author: Alexandr Plesovskih Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_gerritchangesource.py Log Message: ----------- Add new unit tests Commit: f882fd39b71acc3300ce4fc20b2183aa4ff9e898 https://github.com/buildbot/buildbot/commit/f882fd39b71acc3300ce4fc20b2183aa4ff9e898 Author: Alexandr Plesovskih Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_gerritchangesource.py Log Message: ----------- microfix: assertEqual >> failUnlessEqual Commit: dcd83949b795f2cec0576b7767ba8894a61570e7 https://github.com/buildbot/buildbot/commit/dcd83949b795f2cec0576b7767ba8894a61570e7 Author: Alexander Plesovskikh Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/docs/manual/cfg-changesources.rst Log Message: ----------- Update cfg-changesources.rst Commit: 8bf2d07c3edb42aca63b6a842016fe2a66dfe456 https://github.com/buildbot/buildbot/commit/8bf2d07c3edb42aca63b6a842016fe2a66dfe456 Author: Alexander Plesovskikh Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/docs/manual/cfg-changesources.rst Log Message: ----------- Update cfg-changesources.rst fix typo Commit: 668a3da326204f8e4cb1494f17974bad82614797 https://github.com/buildbot/buildbot/commit/668a3da326204f8e4cb1494f17974bad82614797 Author: Alexander Plesovskikh Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/docs/manual/cfg-changesources.rst Log Message: ----------- Update cfg-changesources.rst ssh passphrase this can be a problem Commit: e99a9a73423d41779a4052070a4c1015cd8b4364 https://github.com/buildbot/buildbot/commit/e99a9a73423d41779a4052070a4c1015cd8b4364 Author: Alexandr Plesovskih Date: 2013-12-02 (Mon, 02 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_gerritchangesource.py Log Message: ----------- Add new unit test. Testing custom handler. Commit: 513c14d2d107168316a5bd7edeaffb394ed9460b https://github.com/buildbot/buildbot/commit/513c14d2d107168316a5bd7edeaffb394ed9460b Author: Alexandr Plesovskih Date: 2013-12-02 (Mon, 02 Dec 2013) Changed paths: M master/docs/manual/cfg-changesources.rst Log Message: ----------- Merge branch 'master' of github.com:hgenru/buildbot Commit: 0f9ac746685a06580fd73a31bef6616304fb540b https://github.com/buildbot/buildbot/commit/0f9ac746685a06580fd73a31bef6616304fb540b Author: Alexander Plesovskikh Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/docs/manual/cfg-changesources.rst Log Message: ----------- Add example Commit: 09497079ae8753cfd87592ee63d06ee4232169f5 https://github.com/buildbot/buildbot/commit/09497079ae8753cfd87592ee63d06ee4232169f5 Author: Dustin J. Mitchell Date: 2013-12-14 (Sat, 14 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py M master/buildbot/test/unit/test_changes_gerritchangesource.py M master/docs/manual/cfg-changesources.rst Log Message: ----------- Merge branch 'master' of git://github.com/hgenru/buildbot +autopep8 Compare: https://github.com/buildbot/buildbot/compare/5614e7c9cbef...09497079ae87 From noreply at github.com Sun Dec 15 03:08:00 2013 From: noreply at github.com (GitHub) Date: Sat, 14 Dec 2013 19:08:00 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] f1090b: Make HgPoller break file paths correctly Message-ID: <52ad1d10e9341_4febf05d48912c5@hookshot-fe4-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: f1090bdebfa9cd3a214ce1c7edf1585454678869 https://github.com/buildbot/buildbot/commit/f1090bdebfa9cd3a214ce1c7edf1585454678869 Author: Steve Hoelzer Date: 2013-12-13 (Fri, 13 Dec 2013) Changed paths: M master/buildbot/changes/hgpoller.py M master/buildbot/test/unit/test_changes_hgpoller.py Log Message: ----------- Make HgPoller break file paths correctly The command to get revision info lists all files on one line and was splitting on spaces to get file paths. Sometimes paths have spaces so that doesn't work. Instead, insert a pathsep character between paths and use that for splitting. This fixes http://trac.buildbot.net/ticket/2595 Commit: 2bbee4fb6c8df05bf9f4544852714157edd5056c https://github.com/buildbot/buildbot/commit/2bbee4fb6c8df05bf9f4544852714157edd5056c Author: Dustin J. Mitchell Date: 2013-12-14 (Sat, 14 Dec 2013) Changed paths: M master/buildbot/changes/hgpoller.py M master/buildbot/test/unit/test_changes_hgpoller.py M master/docs/relnotes/index.rst Log Message: ----------- Merge branch 'master' of git://github.com/shoelzer/buildbot Compare: https://github.com/buildbot/buildbot/compare/09497079ae87...2bbee4fb6c8d From trac at buildbot.net Sun Dec 15 19:41:47 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 15 Dec 2013 19:41:47 -0000 Subject: [Buildbot-commits] [Buildbot] #2606: Trigger step consumes 2 build slots on slave In-Reply-To: <039.15a8d965c9a49563c6613690581a3e73@buildbot.net> References: <039.15a8d965c9a49563c6613690581a3e73@buildbot.net> Message-ID: <054.83c356d3ec04c39f082c842d16b43c91@buildbot.net> #2606: Trigger step consumes 2 build slots on slave --------------------+------------------------ Reporter: otrempe | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Resolution: Keywords: | --------------------+------------------------ Comment (by dustin): I can't replicate this with the following {{{ c['schedulers'] = [] c['schedulers'].append(triggerable.Triggerable(name="a", builderNames=["b"])) c['schedulers'].append(ForceScheduler( name="force", builderNames=["a"])) fa = factory.BuildFactory() fa.addStep(Trigger(schedulerNames=['a'], waitForFinish=True)) fb = factory.BuildFactory() fb.addStep(ShellCommand(command="true")) from buildbot.config import BuilderConfig c['builders'] = [ BuilderConfig( name = "a", slavenames = "example-slave", factory = fa, ), BuilderConfig( name = "b", slavenames = "other-slave", factory = fb, ) ] }}} The build runs successfully despite both slaves having `max_builds=1`. Can you offer a reproduction recipe? -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Sun Dec 15 19:45:10 2013 From: trac at buildbot.net (Buildbot trac) Date: Sun, 15 Dec 2013 19:45:10 -0000 Subject: [Buildbot-commits] [Buildbot] #2607: A lot of broken links and Jenkins instance in SuccessStories In-Reply-To: <036.1308bf05191fe2b1bb42c2ba657aa945@buildbot.net> References: <036.1308bf05191fe2b1bb42c2ba657aa945@buildbot.net> Message-ID: <051.506137e5f01bcfc6f45c6465d79986b4@buildbot.net> #2607: A lot of broken links and Jenkins instance in SuccessStories ---------------------+---------------------- Reporter: hgen | Owner: Type: defect | Status: new Priority: critical | Milestone: ongoing Version: 0.8.8 | Resolution: Keywords: | ---------------------+---------------------- Changes (by dustin): * priority: major => critical * milestone: undecided => ongoing -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Mon Dec 16 00:05:02 2013 From: trac at buildbot.net (Buildbot trac) Date: Mon, 16 Dec 2013 00:05:02 -0000 Subject: [Buildbot-commits] [Buildbot] #2606: Trigger step consumes 2 build slots on slave In-Reply-To: <039.15a8d965c9a49563c6613690581a3e73@buildbot.net> References: <039.15a8d965c9a49563c6613690581a3e73@buildbot.net> Message-ID: <054.4e59458c472ae29ec1bbf940dee0057c@buildbot.net> #2606: Trigger step consumes 2 build slots on slave --------------------+------------------------ Reporter: otrempe | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Resolution: Keywords: | --------------------+------------------------ Comment (by otrempe): I will provide you with the simplest configuration I find which reproduces the issue as soon as possible. In the meantime, I found this conversation in the mailing list which seems to describe the same issue. http://sourceforge.net/mailarchive/message.php?msg_id=31747956 -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Mon Dec 16 00:06:45 2013 From: trac at buildbot.net (Buildbot trac) Date: Mon, 16 Dec 2013 00:06:45 -0000 Subject: [Buildbot-commits] [Buildbot] #2606: Trigger step consumes 2 build slots on slave In-Reply-To: <039.15a8d965c9a49563c6613690581a3e73@buildbot.net> References: <039.15a8d965c9a49563c6613690581a3e73@buildbot.net> Message-ID: <054.d3e8623fac4a5d65b16f6da45247bcf4@buildbot.net> #2606: Trigger step consumes 2 build slots on slave --------------------+------------------------ Reporter: otrempe | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Resolution: Keywords: | --------------------+------------------------ Comment (by dustin): Not quite - in that case, the two builds are on the same slave -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Mon Dec 16 00:14:39 2013 From: noreply at github.com (GitHub) Date: Sun, 15 Dec 2013 16:14:39 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 3c09d0: add a BuildStep.isNewStyle method Message-ID: <52ae45efb6810_324910e7d5039286@hookshot-fe1-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 3c09d045d71addd4b70c3cd731abc53e37ed052d https://github.com/buildbot/buildbot/commit/3c09d045d71addd4b70c3cd731abc53e37ed052d Author: Dustin J. Mitchell Date: 2013-12-15 (Sun, 15 Dec 2013) Changed paths: M master/buildbot/process/buildstep.py M master/buildbot/test/unit/test_process_buildstep.py Log Message: ----------- add a BuildStep.isNewStyle method From trac at buildbot.net Mon Dec 16 13:00:14 2013 From: trac at buildbot.net (Buildbot trac) Date: Mon, 16 Dec 2013 13:00:14 -0000 Subject: [Buildbot-commits] [Buildbot] #2606: Trigger step consumes 2 build slots on slave In-Reply-To: <039.15a8d965c9a49563c6613690581a3e73@buildbot.net> References: <039.15a8d965c9a49563c6613690581a3e73@buildbot.net> Message-ID: <054.9009b8efe8880aa47e4bae634db17422@buildbot.net> #2606: Trigger step consumes 2 build slots on slave --------------------+------------------------ Reporter: otrempe | Owner: Type: defect | Status: closed Priority: major | Milestone: undecided Version: 0.8.8 | Resolution: invalid Keywords: | --------------------+------------------------ Changes (by otrempe): * status: new => closed * resolution: => invalid Comment: I feel stupid... This is my fault. My configuration was like if (in your example) BuilderConfig "b" would have "example-slave" in addition to "other-slave" in slavenames. I tried to debug this for many hours without realizing the 2 builds were launched on the same slave, thus requiring max_builds=2 to start. My bad... I close this ticket. -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Mon Dec 16 13:56:56 2013 From: trac at buildbot.net (Buildbot trac) Date: Mon, 16 Dec 2013 13:56:56 -0000 Subject: [Buildbot-commits] [Buildbot] #2595: HgPoller splits file paths with spaces In-Reply-To: <040.b60e121794a2378c811c2b963f5d2fe2@buildbot.net> References: <040.b60e121794a2378c811c2b963f5d2fe2@buildbot.net> Message-ID: <055.3b0d962cc832286f3c7ea90a5fda18e6@buildbot.net> #2595: HgPoller splits file paths with spaces ---------------------+--------------------- Reporter: shoelzer | Owner: Type: defect | Status: closed Priority: major | Milestone: 0.8.9 Version: 0.8.8 | Resolution: fixed Keywords: | ---------------------+--------------------- Changes (by shoelzer): * status: new => closed * resolution: => fixed Comment: Fixed in https://github.com/buildbot/buildbot/pull/1002 -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Wed Dec 18 01:47:18 2013 From: noreply at github.com (GitHub) Date: Tue, 17 Dec 2013 17:47:18 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] d486f4: Update build step docs for Visual Studio and MSBui... Message-ID: <52b0fea69e7b3_51f4a43d5085834@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: d486f4b637fb34dbac3548d3fbf5b15562ff7346 https://github.com/buildbot/buildbot/commit/d486f4b637fb34dbac3548d3fbf5b15562ff7346 Author: Steve Hoelzer Date: 2013-12-16 (Mon, 16 Dec 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Update build step docs for Visual Studio and MSBuild Commit: 2046f59ac790e0ad20872de102be45a778ef7313 https://github.com/buildbot/buildbot/commit/2046f59ac790e0ad20872de102be45a778ef7313 Author: Dustin J. Mitchell Date: 2013-12-17 (Tue, 17 Dec 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Merge branch 'master' of git://github.com/shoelzer/buildbot Compare: https://github.com/buildbot/buildbot/compare/2bbee4fb6c8d...2046f59ac790 From noreply at github.com Wed Dec 18 01:55:55 2013 From: noreply at github.com (GitHub) Date: Tue, 17 Dec 2013 17:55:55 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] e8255b: Add 2 slave events: Message-ID: <52b100abb2f9a_2fec63d4c14114a@hookshot-fe1-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: e8255b8b3aca76c876afe4e1a58006cee9c1c00f https://github.com/buildbot/buildbot/commit/e8255b8b3aca76c876afe4e1a58006cee9c1c00f Author: delanne Date: 2013-12-17 (Tue, 17 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/status/base.py M master/buildbot/status/master.py M master/buildbot/status/slave.py M master/buildbot/status/status_push.py Log Message: ----------- Add 2 slave events: - SlavePaused - SlaveUnpaused Commit: 936c91c457a3c4800d84a0a28114a8b7c988fb0d https://github.com/buildbot/buildbot/commit/936c91c457a3c4800d84a0a28114a8b7c988fb0d Author: delanne Date: 2013-12-17 (Tue, 17 Dec 2013) Changed paths: M master/buildbot/status/status_push.py Log Message: ----------- Only send the slavename for the slavePaused event Commit: d3a59a0037e4385d14d71ecc8d98ec1b5a46504a https://github.com/buildbot/buildbot/commit/d3a59a0037e4385d14d71ecc8d98ec1b5a46504a Author: Dustin J. Mitchell Date: 2013-12-17 (Tue, 17 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/status/base.py M master/buildbot/status/master.py M master/buildbot/status/slave.py M master/buildbot/status/status_push.py Log Message: ----------- Merge branch 'slave_pause_event' of git://github.com/delanne/buildbot Compare: https://github.com/buildbot/buildbot/compare/2046f59ac790...d3a59a0037e4 From trac at buildbot.net Thu Dec 19 08:38:55 2013 From: trac at buildbot.net (Buildbot trac) Date: Thu, 19 Dec 2013 08:38:55 -0000 Subject: [Buildbot-commits] [Buildbot] #2608: Fail to run on OS X due to locale Message-ID: <042.da06b23ae07dfe04af9d12af6cc6d7e9@buildbot.net> #2608: Fail to run on OS X due to locale -----------------------+----------------------- Reporter: hanxue_dev | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: -----------------------+----------------------- buildbot 0.8.8 refuse to run on OS X 10.9 with Python 2.6.8 with the following error https://gist.github.com/8036112 This is because the locale 'UTF-8' is invalid on OS X. Example of valid locales: en_US.UTF-8 Is there any workaround, because locale.getdefaultlocale() produce the correct values. -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Thu Dec 19 14:34:39 2013 From: trac at buildbot.net (Buildbot trac) Date: Thu, 19 Dec 2013 14:34:39 -0000 Subject: [Buildbot-commits] [Buildbot] #2609: FileUpload URL name not configurable Message-ID: <039.04b131f5f727c72a2231cd7cec915d6f@buildbot.net> #2609: FileUpload URL name not configurable ------------------------+----------------------- Reporter: encukou | Owner: Type: enhancement | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: ------------------------+----------------------- I've noticed that `buildbot.steps.transfer.FileUpload` calls: {{{ self.addURL(os.path.basename(masterdest), self.url) }}} In my case the basename is very long (a Git SHA-1), so it makes the waterfall display very wide. It would be nice to make the label configurable. -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Thu Dec 19 15:34:28 2013 From: noreply at github.com (GitHub) Date: Thu, 19 Dec 2013 07:34:28 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] d91536: Various Fix Message-ID: <52b3120473fc2_6e4df15d4c8077b@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: d91536ac9e5530be9695a752037463d78f683fe8 https://github.com/buildbot/buildbot/commit/d91536ac9e5530be9695a752037463d78f683fe8 Author: delanne Date: 2013-12-19 (Thu, 19 Dec 2013) Changed paths: M master/buildbot/buildslave/manager.py M master/buildbot/data/buildsets.py M master/buildbot/process/botmaster.py M master/buildbot/process/buildrequest.py M master/buildbot/status/buildstep.py Log Message: ----------- Various Fix - Fix: master/buildbot/buildslave/manager.py - __repr__ method of BuildslaveRegistration - Fix: master/buildbot/process/buildrequest.py - set ss.patch to None instead of (None, None, None) - Fix: master/buildbot/status/buildstep.py - Make BuildStepStatus picklable - New BuildRequest are processed: - Change the filter of BotMaster::buildrequest_consumer_new from ('buildrequest', None, None, None, 'new') to ('buildset', None, 'builder', None, 'buildrequest', None, 'new'), otherwise the BuildRequestDistributor activity_loop is never wakeup on a new buildRequest. - Note: This is certainly a temporary fix. Commit: ea5568934c9fa9bd5e6b2ddbe4230c997e2ac985 https://github.com/buildbot/buildbot/commit/ea5568934c9fa9bd5e6b2ddbe4230c997e2ac985 Author: Dustin J. Mitchell Date: 2013-12-19 (Thu, 19 Dec 2013) Changed paths: M master/buildbot/buildslave/manager.py M master/buildbot/data/buildsets.py M master/buildbot/process/botmaster.py M master/buildbot/process/buildrequest.py M master/buildbot/status/buildstep.py Log Message: ----------- Merge branch 'nine' of git://github.com/delanne/buildbot into nine +autopep8 Compare: https://github.com/buildbot/buildbot/compare/3c09d045d71a...ea5568934c9f From noreply at github.com Thu Dec 19 19:27:29 2013 From: noreply at github.com (GitHub) Date: Thu, 19 Dec 2013 11:27:29 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 67e1da: Test that HgPoller can handle paths with spaces Message-ID: <52b348a189619_2ed4fd1d588524a@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 67e1da24f37b5bc73c8ed53ce56553cbc506a2cc https://github.com/buildbot/buildbot/commit/67e1da24f37b5bc73c8ed53ce56553cbc506a2cc Author: Steve Hoelzer Date: 2013-12-19 (Thu, 19 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_hgpoller.py Log Message: ----------- Test that HgPoller can handle paths with spaces Commit: 974c04eee69c98247ddc82c575405f6ec5ce5ee8 https://github.com/buildbot/buildbot/commit/974c04eee69c98247ddc82c575405f6ec5ce5ee8 Author: Dustin J. Mitchell Date: 2013-12-19 (Thu, 19 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_hgpoller.py Log Message: ----------- Merge branch 'master' of git://github.com/shoelzer/buildbot Compare: https://github.com/buildbot/buildbot/compare/d3a59a0037e4...974c04eee69c From trac at buildbot.net Thu Dec 19 19:49:39 2013 From: trac at buildbot.net (Buildbot trac) Date: Thu, 19 Dec 2013 19:49:39 -0000 Subject: [Buildbot-commits] [Buildbot] #2610: Mercurial step env parameter does not accept Property Message-ID: <039.c14ffb1ef8220f4fe08ae978f958d892@buildbot.net> #2610: Mercurial step env parameter does not accept Property --------------------+----------------------- Reporter: otrempe | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: --------------------+----------------------- Trying to use Property like this in a Mercurial step: (I know it doesn't make sense to set HGRCPATH to buildername, it's just for demonstration purpose): {{{ env={'HGRCPATH': Property('buildername')} }}} I get this error message: {{{ Traceback from remote host -- Traceback (most recent call last): File "K:\buildbot\venv\lib\site-packages\twisted\spread\pb.py", line 891, in _recvMessage netResult = object.remoteMessageReceived(self, message, netArgs, netKw) File "K:\buildbot\venv\lib\site-packages\twisted\spread\flavors.py", line 114, in remoteMessageReceived state = method(*args, **kw) File "K:\buildbot\venv\lib\site-packages\buildslave\bot.py", line 141, in remote_startCommand d = self.command.doStart() File "K:\buildbot\venv\lib\site-packages\buildslave\commands\base.py", line 146, in doStart d = defer.maybeDeferred(self.start) --- --- File "K:\buildbot\venv\lib\site-packages\twisted\internet\defer.py", line 139, in maybeDeferred result = f(*args, **kw) File "K:\buildbot\venv\lib\site-packages\buildslave\commands\shell.py", line 41, in start logEnviron=args.get('logEnviron', True), File "K:\buildbot\venv\lib\site-packages\buildslave\runprocess.py", line 314, in __init__ "lists; key '%s' is incorrect" % (key,)) exceptions.RuntimeError: 'env' values must be strings or lists; key 'HGRCPATH' is incorrect exceptions.RuntimeError: 'env' values must be strings or lists; key 'HGRCPATH' is incorrect }}} The code in runprocess.py suggests that only an instance of "basestring" is accepted, thus causing this error when trying to pass a Property instance: {{{ for key, v in environ.iteritems(): if v is not None: if not isinstance(v, basestring): raise RuntimeError("'env' values must be strings or " "lists; key '%s' is incorrect" % (key,)) }}} The documentation clearly suggests that Property should be available in env: {{{ env a dictionary of environment strings which will be added to the child command's environment. The usual property interpolations can be used in environment variable names and values - see Properties. }}} -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Thu Dec 19 19:51:52 2013 From: trac at buildbot.net (Buildbot trac) Date: Thu, 19 Dec 2013 19:51:52 -0000 Subject: [Buildbot-commits] [Buildbot] #2610: Mercurial step env parameter does not accept Property In-Reply-To: <039.c14ffb1ef8220f4fe08ae978f958d892@buildbot.net> References: <039.c14ffb1ef8220f4fe08ae978f958d892@buildbot.net> Message-ID: <054.a8b5e3716eea0a3a31dd1378ec124817@buildbot.net> #2610: Mercurial step env parameter does not accept Property --------------------+------------------------ Reporter: otrempe | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Resolution: Keywords: | --------------------+------------------------ Comment (by otrempe): I didn't try it, but I guess the behavior will be the same with all steps providing the env parameter -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 20 00:46:47 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 00:46:47 -0000 Subject: [Buildbot-commits] [Buildbot] #2611: Repo buildstep Build instance has no attribute 'pathmodule' Message-ID: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> #2611: Repo buildstep Build instance has no attribute 'pathmodule' ----------------------+------------------------------------ Reporter: abrauner | Owner: Type: undecided | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: Force schedulers, repo ----------------------+------------------------------------ I am issuing a buildstep that does a Repo call to sync down my code. This is done through a force scheduler, force build. I get the following error. I saw a previous ticket that had been closed as fixed but I am getting that error. I am on BuildMaster 0.8.8 and slave 0.8.8 Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1181, in unwindGenerator return _inlineCallbacks(None, gen, Deferred()) File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1039, in _inlineCallbacks result = g.send(result) File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- py2.7.egg/buildbot/steps/source/repo.py", line 237, in doStartVC d = self.doRepoSync() File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1181, in unwindGenerator return _inlineCallbacks(None, gen, Deferred()) --- --- File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1039, in _inlineCallbacks result = g.send(result) File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- py2.7.egg/buildbot/steps/source/repo.py", line 264, in doRepoSync updatable = yield self.sourcedirIsUpdateable() File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- py2.7.egg/buildbot/steps/source/repo.py", line 220, in sourcedirIsUpdateable return self.pathExists(self.repoDir()) File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- py2.7.egg/buildbot/steps/source/repo.py", line 217, in repoDir return self.build.pathmodule.join(self.workdir, ".repo") exceptions.AttributeError: Build instance has no attribute 'pathmodule' -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 20 14:35:27 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 14:35:27 -0000 Subject: [Buildbot-commits] [Buildbot] #2608: Fail to run on OS X due to locale In-Reply-To: <042.da06b23ae07dfe04af9d12af6cc6d7e9@buildbot.net> References: <042.da06b23ae07dfe04af9d12af6cc6d7e9@buildbot.net> Message-ID: <057.12295c8fc63ccc48387350156c019f14@buildbot.net> #2608: Fail to run on OS X due to locale -----------------------+-------------------- Reporter: hanxue_dev | Owner: Type: defect | Status: new Priority: major | Milestone: 0.8.9 Version: 0.8.8 | Resolution: Keywords: encoding | -----------------------+-------------------- Changes (by dustin): * keywords: => encoding * milestone: undecided => 0.8.9 Comment: Raw text of the error: {{{ 2013-12-19 15:04:32+0800 [-] Log opened. 2013-12-19 15:04:32+0800 [-] twistd 13.2.0 (/private/tmp/buildbot/sandbox/bin/python 2.6.8) starting up. 2013-12-19 15:04:32+0800 [-] reactor class: twisted.internet.selectreactor.SelectReactor. 2013-12-19 15:04:32+0800 [-] Starting BuildMaster -- buildbot.version: 0.8.8 2013-12-19 15:04:32+0800 [-] Loading configuration from '/private/tmp/buildbot/master/master.cfg' 2013-12-19 15:04:32+0800 [-] Setting up database with URL 'sqlite:///state.sqlite' 2013-12-19 15:04:32+0800 [-] setting database journal mode to 'wal' 2013-12-19 15:04:32+0800 [-] adding 1 new changesources, removing 0 2013-12-19 15:04:32+0800 [-] gitpoller: using workdir '/private/tmp/buildbot/master/gitpoller-workdir' 2013-12-19 15:04:32+0800 [-] adding 1 new slaves, removing 0 2013-12-19 15:04:32+0800 [-] adding 1 new builders, removing 0 2013-12-19 15:04:32+0800 [-] trying to load status pickle from /private/tmp/buildbot/master/runtests/builder 2013-12-19 15:04:32+0800 [-] no saved status pickle, creating a new one 2013-12-19 15:04:32+0800 [-] added builder runtests in category 2013-12-19 15:04:32+0800 [-] PBServerFactory starting on 9989 2013-12-19 15:04:32+0800 [-] Starting factory 2013-12-19 15:04:32+0800 [-] adding scheduler 'all' 2013-12-19 15:04:32+0800 [-] adding scheduler 'force' 2013-12-19 15:04:32+0800 [-] WebStatus using (/private/tmp/buildbot/master/public_html) 2013-12-19 15:04:32+0800 [-] RotateLogSite starting on 8010 2013-12-19 15:04:32+0800 [-] Starting factory 2013-12-19 15:04:32+0800 [-] Setting up http.log rotating 10 files of 10000000 bytes each 2013-12-19 15:04:32+0800 [-] BuildMaster is running 2013-12-19 15:04:56+0800 [HTTPChannel,0,127.0.0.1] Unhandled Error Traceback (most recent call last): File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/protocols/basic.py", line 571, in dataReceived why = self.lineReceived(line) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 1655, in lineReceived self.allContentReceived() File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 1730, in allContentReceived req.requestReceived(command, path, version) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 826, in requestReceived self.process() --- --- File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/server.py", line 189, in process self.render(resrc) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/server.py", line 238, in render body = resrc.render(self) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/buildbot-0.8.8-py2.6.egg/buildbot/status/web/base.py", line 324, in render ctx = self.getContext(request) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/buildbot-0.8.8-py2.6.egg/buildbot/status/web/base.py", line 198, in getContext locale_enc = locale.getdefaultlocale()[1] File "/private/tmp/buildbot/sandbox/lib/python2.6/locale.py", line 478, in getdefaultlocale return _parse_localename(localename) File "/private/tmp/buildbot/sandbox/lib/python2.6/locale.py", line 410, in _parse_localename raise ValueError, 'unknown locale: %s' % localename exceptions.ValueError: unknown locale: UTF-8 2013-12-19 15:14:34+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 15:14:37+0800 [HTTPChannel,2,127.0.0.1] Unhandled Error Traceback (most recent call last): File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/protocols/basic.py", line 571, in dataReceived why = self.lineReceived(line) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 1655, in lineReceived self.allContentReceived() File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 1730, in allContentReceived req.requestReceived(command, path, version) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 826, in requestReceived self.process() --- --- File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/server.py", line 189, in process self.render(resrc) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/server.py", line 238, in render body = resrc.render(self) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/buildbot-0.8.8-py2.6.egg/buildbot/status/web/base.py", line 324, in render ctx = self.getContext(request) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/buildbot-0.8.8-py2.6.egg/buildbot/status/web/base.py", line 198, in getContext locale_enc = locale.getdefaultlocale()[1] File "/private/tmp/buildbot/sandbox/lib/python2.6/locale.py", line 478, in getdefaultlocale return _parse_localename(localename) File "/private/tmp/buildbot/sandbox/lib/python2.6/locale.py", line 410, in _parse_localename raise ValueError, 'unknown locale: %s' % localename exceptions.ValueError: unknown locale: UTF-8 2013-12-19 15:19:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 15:24:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 15:29:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 15:34:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 15:39:34+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 15:44:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 15:49:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 15:54:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 15:59:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 16:04:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 16:09:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 16:14:34+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 16:16:58+0800 [HTTPChannel,3,127.0.0.1] Unhandled Error Traceback (most recent call last): File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/protocols/basic.py", line 571, in dataReceived why = self.lineReceived(line) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 1655, in lineReceived self.allContentReceived() File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 1730, in allContentReceived req.requestReceived(command, path, version) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 826, in requestReceived self.process() --- --- File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/server.py", line 189, in process self.render(resrc) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/server.py", line 238, in render body = resrc.render(self) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/buildbot-0.8.8-py2.6.egg/buildbot/status/web/base.py", line 324, in render ctx = self.getContext(request) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/buildbot-0.8.8-py2.6.egg/buildbot/status/web/base.py", line 198, in getContext locale_enc = locale.getdefaultlocale()[1] File "/private/tmp/buildbot/sandbox/lib/python2.6/locale.py", line 478, in getdefaultlocale return _parse_localename(localename) File "/private/tmp/buildbot/sandbox/lib/python2.6/locale.py", line 410, in _parse_localename raise ValueError, 'unknown locale: %s' % localename exceptions.ValueError: unknown locale: UTF-8 2013-12-19 16:17:01+0800 [HTTPChannel,3,127.0.0.1] Unhandled Error Traceback (most recent call last): File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/protocols/basic.py", line 571, in dataReceived why = self.lineReceived(line) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 1655, in lineReceived self.allContentReceived() File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 1730, in allContentReceived req.requestReceived(command, path, version) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/http.py", line 826, in requestReceived self.process() --- --- File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/server.py", line 189, in process self.render(resrc) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/Twisted-13.2.0-py2.6-macosx-10.9-intel.egg/twisted/web/server.py", line 238, in render body = resrc.render(self) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/buildbot-0.8.8-py2.6.egg/buildbot/status/web/base.py", line 324, in render ctx = self.getContext(request) File "/private/tmp/buildbot/sandbox/lib/python2.6/site- packages/buildbot-0.8.8-py2.6.egg/buildbot/status/web/base.py", line 198, in getContext locale_enc = locale.getdefaultlocale()[1] File "/private/tmp/buildbot/sandbox/lib/python2.6/locale.py", line 478, in getdefaultlocale return _parse_localename(localename) File "/private/tmp/buildbot/sandbox/lib/python2.6/locale.py", line 410, in _parse_localename raise ValueError, 'unknown locale: %s' % localename exceptions.ValueError: unknown locale: UTF-8 2013-12-19 16:19:33+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" 2013-12-19 16:24:35+0800 [-] gitpoller: processing 0 changes: [] from "git://github.com/buildbot/pyflakes.git" }}} -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 20 14:36:25 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 14:36:25 -0000 Subject: [Buildbot-commits] [Buildbot] #2608: Fail to run on OS X due to locale In-Reply-To: <042.da06b23ae07dfe04af9d12af6cc6d7e9@buildbot.net> References: <042.da06b23ae07dfe04af9d12af6cc6d7e9@buildbot.net> Message-ID: <057.a735c6314ee1bc8a68f180c36260386c@buildbot.net> #2608: Fail to run on OS X due to locale -----------------------+-------------------- Reporter: hanxue_dev | Owner: Type: defect | Status: new Priority: major | Milestone: 0.8.9 Version: 0.8.8 | Resolution: Keywords: encoding | -----------------------+-------------------- Comment (by dustin): What does `locale.getdefaultlocale` return? It looks like that function itself is the one raising the error. -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 20 18:52:56 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 18:52:56 -0000 Subject: [Buildbot-commits] [Buildbot] #2609: FileUpload URL name not configurable In-Reply-To: <039.04b131f5f727c72a2231cd7cec915d6f@buildbot.net> References: <039.04b131f5f727c72a2231cd7cec915d6f@buildbot.net> Message-ID: <054.7a8ab85da9761a794fe601ea468241d6@buildbot.net> #2609: FileUpload URL name not configurable -----------------------------+-------------------- Reporter: encukou | Owner: Type: enhancement | Status: new Priority: patches-accepted | Milestone: 0.8.+ Version: 0.8.8 | Resolution: Keywords: simple | -----------------------------+-------------------- Changes (by dustin): * keywords: => simple * priority: major => patches-accepted * milestone: undecided => 0.8.+ -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 20 19:00:32 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 19:00:32 -0000 Subject: [Buildbot-commits] [Buildbot] #2610: Mercurial step env parameter does not accept Property In-Reply-To: <039.c14ffb1ef8220f4fe08ae978f958d892@buildbot.net> References: <039.c14ffb1ef8220f4fe08ae978f958d892@buildbot.net> Message-ID: <054.28792c617d037a1e3198be00a38ec42f@buildbot.net> #2610: Mercurial step env parameter does not accept Property --------------------+--------------------- Reporter: otrempe | Owner: Type: defect | Status: closed Priority: major | Milestone: 0.8.9 Version: 0.8.8 | Resolution: fixed Keywords: | --------------------+--------------------- Changes (by dustin): * status: new => closed * resolution: => fixed * milestone: undecided => 0.8.9 Comment: {{{ commit 538734808dfc2f896affb0737bcd679791608c1a Author: Dustin J. Mitchell Date: Fri Dec 20 14:00:18 2013 -0500 Render 'env' for source steps Fixes #2610. }}} -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Fri Dec 20 19:01:34 2013 From: noreply at github.com (GitHub) Date: Fri, 20 Dec 2013 11:01:34 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 538734: Render 'env' for source steps Message-ID: <52b4940e148a8_13b5141fd4c445c@hookshot-fe4-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 538734808dfc2f896affb0737bcd679791608c1a https://github.com/buildbot/buildbot/commit/538734808dfc2f896affb0737bcd679791608c1a Author: Dustin J. Mitchell Date: 2013-12-20 (Fri, 20 Dec 2013) Changed paths: M master/buildbot/steps/source/base.py M master/docs/relnotes/index.rst Log Message: ----------- Render 'env' for source steps Fixes #2610. From trac at buildbot.net Fri Dec 20 19:03:43 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 19:03:43 -0000 Subject: [Buildbot-commits] [Buildbot] #2611: Repo buildstep Build instance has no attribute 'pathmodule' In-Reply-To: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> References: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> Message-ID: <055.e59f8a22a7124c0d9ee330cd777e22ec@buildbot.net> #2611: Repo buildstep Build instance has no attribute 'pathmodule' ---------------------+------------------------ Reporter: abrauner | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Resolution: Keywords: repovc | ---------------------+------------------------ Changes (by dustin): * keywords: Force schedulers, repo => repovc * type: undecided => defect Old description: > I am issuing a buildstep that does a Repo call to sync down my code. This > is done through a force scheduler, force build. I get the following > error. I saw a previous ticket that had been closed as fixed but I am > getting that error. I am on BuildMaster 0.8.8 and slave 0.8.8 > > Traceback (most recent call last): > File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line > 1181, in unwindGenerator > return _inlineCallbacks(None, gen, Deferred()) > File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line > 1039, in _inlineCallbacks > result = g.send(result) > File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- > py2.7.egg/buildbot/steps/source/repo.py", line 237, in doStartVC > d = self.doRepoSync() > File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line > 1181, in unwindGenerator > return _inlineCallbacks(None, gen, Deferred()) > --- --- > File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line > 1039, in _inlineCallbacks > result = g.send(result) > File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- > py2.7.egg/buildbot/steps/source/repo.py", line 264, in doRepoSync > updatable = yield self.sourcedirIsUpdateable() > File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- > py2.7.egg/buildbot/steps/source/repo.py", line 220, in > sourcedirIsUpdateable > return self.pathExists(self.repoDir()) > File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- > py2.7.egg/buildbot/steps/source/repo.py", line 217, in repoDir > return self.build.pathmodule.join(self.workdir, ".repo") > exceptions.AttributeError: Build instance has no attribute 'pathmodule' New description: I am issuing a buildstep that does a Repo call to sync down my code. This is done through a force scheduler, force build. I get the following error. I saw a previous ticket that had been closed as fixed but I am getting that error. I am on BuildMaster 0.8.8 and slave 0.8.8 {{{ Traceback (most recent call last): File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1181, in unwindGenerator return _inlineCallbacks(None, gen, Deferred()) File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1039, in _inlineCallbacks result = g.send(result) File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- py2.7.egg/buildbot/steps/source/repo.py", line 237, in doStartVC d = self.doRepoSync() File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1181, in unwindGenerator return _inlineCallbacks(None, gen, Deferred()) --- --- File "/usr/lib/python2.7/dist-packages/twisted/internet/defer.py", line 1039, in _inlineCallbacks result = g.send(result) File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- py2.7.egg/buildbot/steps/source/repo.py", line 264, in doRepoSync updatable = yield self.sourcedirIsUpdateable() File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- py2.7.egg/buildbot/steps/source/repo.py", line 220, in sourcedirIsUpdateable return self.pathExists(self.repoDir()) File "/usr/local/lib/python2.7/dist-packages/buildbot-latest- py2.7.egg/buildbot/steps/source/repo.py", line 217, in repoDir return self.build.pathmodule.join(self.workdir, ".repo") exceptions.AttributeError: Build instance has no attribute 'pathmodule' }}} -- Comment: what was the previous ticket? -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Fri Dec 20 19:18:25 2013 From: noreply at github.com (GitHub) Date: Fri, 20 Dec 2013 11:18:25 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 16586c: - Fix: call self.master.data.updates.buildslaveDi... Message-ID: <52b498011f8bc_17b9fffd48193bd@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 16586c85f046b62bf04edb4d6a841ec91fca811a https://github.com/buildbot/buildbot/commit/16586c85f046b62bf04edb4d6a841ec91fca811a Author: delanne Date: 2013-12-19 (Thu, 19 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py Log Message: ----------- - Fix: call self.master.data.updates.buildslaveDisconnected when the Slave is disconnected This patch fix the following bug: - When a slave disconnects, the list "connected_to" in JSON object returns by http://127.0.0.1:8020/api/v2/buildslave isn't updated Commit: b71ef4c9943ef29fa928a3dad193a32607deb906 https://github.com/buildbot/buildbot/commit/b71ef4c9943ef29fa928a3dad193a32607deb906 Author: delanne Date: 2013-12-19 (Thu, 19 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/data/buildslaves.py M master/buildbot/db/buildslaves.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_buildslave_base.py Log Message: ----------- - Add buildslaveConfigured methods and update the db. It fix the following bug: "configured_on" was always an empty list when we made this HTTP Request http://127.0.0.1:8020/api/v2/buildslave - Update unittest Commit: 7f0cd569904a0196466076e312758e01bea82d9f https://github.com/buildbot/buildbot/commit/7f0cd569904a0196466076e312758e01bea82d9f Author: delanne Date: 2013-12-20 (Fri, 20 Dec 2013) Changed paths: M master/buildbot/data/builds.py M master/buildbot/process/build.py M master/buildbot/process/builder.py M master/buildbot/test/unit/test_data_builds.py Log Message: ----------- Start to replace direct call to master.db with master.data in - master/buildbot/process/builder.py - master/buildbot/process/build.py update unittest Commit: ebd1904761f168a2ef542de82ae3de4c2f9515b0 https://github.com/buildbot/buildbot/commit/ebd1904761f168a2ef542de82ae3de4c2f9515b0 Author: Dustin J. Mitchell Date: 2013-12-20 (Fri, 20 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/data/builds.py M master/buildbot/data/buildslaves.py M master/buildbot/db/buildslaves.py M master/buildbot/process/build.py M master/buildbot/process/builder.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_data_builds.py Log Message: ----------- Merge branch 'nine' of git://github.com/delanne/buildbot into nine +autopep8 +pyflake (brdis vs. brids) Compare: https://github.com/buildbot/buildbot/compare/ea5568934c9f...ebd1904761f1 From trac at buildbot.net Fri Dec 20 21:07:59 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 21:07:59 -0000 Subject: [Buildbot-commits] [Buildbot] #2611: Repo buildstep Build instance has no attribute 'pathmodule' In-Reply-To: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> References: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> Message-ID: <055.a27ba428dfd0d5457b0c8c179ed94793@buildbot.net> #2611: Repo buildstep Build instance has no attribute 'pathmodule' ---------------------+------------------------ Reporter: abrauner | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Resolution: Keywords: repovc | ---------------------+------------------------ Comment (by abrauner): http://trac.buildbot.net/ticket/2549 -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 20 21:09:58 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 21:09:58 -0000 Subject: [Buildbot-commits] [Buildbot] #2611: Repo buildstep Build instance has no attribute 'pathmodule' In-Reply-To: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> References: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> Message-ID: <055.d6c9b28a7d2468a38fae045b74b6927b@buildbot.net> #2611: Repo buildstep Build instance has no attribute 'pathmodule' ---------------------+------------------------ Reporter: abrauner | Owner: Type: defect | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Resolution: Keywords: repovc | ---------------------+------------------------ Comment (by abrauner): The following is a link to the other ticket http://trac.buildbot.net/ticket/2549 -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 20 21:14:26 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 21:14:26 -0000 Subject: [Buildbot-commits] [Buildbot] #2549: Repo buildstep AttributeError no attribute 'pathmodule' on force scheduler In-Reply-To: <039.560cc427fe9d184868771290be0d2e67@buildbot.net> References: <039.560cc427fe9d184868771290be0d2e67@buildbot.net> Message-ID: <054.76d9af947732c76ba69d5d82870e2250@buildbot.net> #2549: Repo buildstep AttributeError no attribute 'pathmodule' on force scheduler --------------------+--------------------- Reporter: y2kenny | Owner: Type: defect | Status: closed Priority: major | Milestone: 0.8.8 Version: master | Resolution: fixed Keywords: gerrit | --------------------+--------------------- Comment (by dustin): {{{ commit 28755e77133959d360eedcf7e81bdd021b81406a Author: Tom Prince Date: Thu Aug 22 15:12:40 2013 -0600 Fix usage of path_module in master-side repo step. }}} was the fix, for future reference -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 20 21:16:23 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 21:16:23 -0000 Subject: [Buildbot-commits] [Buildbot] #2611: Repo buildstep Build instance has no attribute 'pathmodule' In-Reply-To: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> References: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> Message-ID: <055.d16f676c0f6c11eda5abffa94a8c1c3f@buildbot.net> #2611: Repo buildstep Build instance has no attribute 'pathmodule' ----------------------------+-------------------- Reporter: abrauner | Owner: Type: support-request | Status: new Priority: major | Milestone: 0.8.9 Version: 0.8.8 | Resolution: Keywords: repovc | ----------------------------+-------------------- Changes (by dustin): * type: defect => support-request * milestone: undecided => 0.8.9 Comment: Looking at the code in your traceback, you don't seem to be running 0.8.8. That line has a `_` between `path` and `module` in 0.8.8. The directory says "latest" - I assume you're on a git checkout, perhaps one that hasn't been updated in a while? -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Fri Dec 20 21:27:53 2013 From: trac at buildbot.net (Buildbot trac) Date: Fri, 20 Dec 2013 21:27:53 -0000 Subject: [Buildbot-commits] [Buildbot] #2611: Repo buildstep Build instance has no attribute 'pathmodule' In-Reply-To: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> References: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> Message-ID: <055.9d24f2534f6cf84b34d0ed36388cae2e@buildbot.net> #2611: Repo buildstep Build instance has no attribute 'pathmodule' ----------------------------+-------------------- Reporter: abrauner | Owner: Type: support-request | Status: new Priority: major | Milestone: 0.8.9 Version: 0.8.8 | Resolution: Keywords: repovc | ----------------------------+-------------------- Comment (by abrauner): I recently cloned the repo. I am looking at that right now -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Fri Dec 20 23:51:22 2013 From: noreply at github.com (GitHub) Date: Fri, 20 Dec 2013 15:51:22 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 4266c7: fix pep8 to not try to check python embedded in no... Message-ID: <52b4d7fa77e44_14e0c41d50933e0@hookshot-fe4-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 4266c7ba94bd9915f555bdf8f7620be7e3e0b326 https://github.com/buildbot/buildbot/commit/4266c7ba94bd9915f555bdf8f7620be7e3e0b326 Author: Dustin J. Mitchell Date: 2013-12-20 (Fri, 20 Dec 2013) Changed paths: M Makefile Log Message: ----------- fix pep8 to not try to check python embedded in node packages From trac at buildbot.net Sat Dec 21 01:27:07 2013 From: trac at buildbot.net (Buildbot trac) Date: Sat, 21 Dec 2013 01:27:07 -0000 Subject: [Buildbot-commits] [Buildbot] #2611: Repo buildstep Build instance has no attribute 'pathmodule' In-Reply-To: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> References: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> Message-ID: <055.8374d1b395c4415cd2fe84ae6c7ae009@buildbot.net> #2611: Repo buildstep Build instance has no attribute 'pathmodule' ----------------------------+-------------------- Reporter: abrauner | Owner: Type: support-request | Status: new Priority: major | Milestone: 0.8.9 Version: 0.8.8 | Resolution: Keywords: repovc | ----------------------------+-------------------- Comment (by abrauner): I got it working now. Some how some old libraries remained -- Ticket URL: Buildbot Buildbot: build/test automation From trac at buildbot.net Sat Dec 21 01:29:07 2013 From: trac at buildbot.net (Buildbot trac) Date: Sat, 21 Dec 2013 01:29:07 -0000 Subject: [Buildbot-commits] [Buildbot] #2611: Repo buildstep Build instance has no attribute 'pathmodule' In-Reply-To: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> References: <040.b6a2199f6ed14dfa462930470be5317e@buildbot.net> Message-ID: <055.520be7efb83b14276100956b43c29ef5@buildbot.net> #2611: Repo buildstep Build instance has no attribute 'pathmodule' ----------------------------+--------------------- Reporter: abrauner | Owner: Type: support-request | Status: closed Priority: major | Milestone: 0.8.9 Version: 0.8.8 | Resolution: fixed Keywords: repovc | ----------------------------+--------------------- Changes (by dustin): * status: new => closed * resolution: => fixed Comment: Great - glad it got fixed up! -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Sat Dec 21 14:58:53 2013 From: noreply at github.com (GitHub) Date: Sat, 21 Dec 2013 06:58:53 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] d666b9: Correct documentation typo regarding MsBuild impor... Message-ID: <52b5acad8b340_6f3cfc9d4c3285f@hookshot-fe1-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: d666b998e765f308775b21088766df8f24314cf3 https://github.com/buildbot/buildbot/commit/d666b998e765f308775b21088766df8f24314cf3 Author: David Keller Date: 2013-12-21 (Sat, 21 Dec 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Correct documentation typo regarding MsBuild import. Commit: e0cea86342ec7923f3221f6e3810550afd74393c https://github.com/buildbot/buildbot/commit/e0cea86342ec7923f3221f6e3810550afd74393c Author: Dustin J. Mitchell Date: 2013-12-21 (Sat, 21 Dec 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Merge branch 'master' of git://github.com/DavidKeller/buildbot Compare: https://github.com/buildbot/buildbot/compare/538734808dfc...e0cea86342ec From noreply at github.com Sun Dec 22 22:39:23 2013 From: noreply at github.com (GitHub) Date: Sun, 22 Dec 2013 14:39:23 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 8e7d7f: UI updates for the latest data api changes Message-ID: <52b76a1b792a3_7f9bea5d588923d@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 8e7d7f210a50e78809291a4b4b5704b34c00d3ff https://github.com/buildbot/buildbot/commit/8e7d7f210a50e78809291a4b4b5704b34c00d3ff Author: Pierre Tardy Date: 2013-12-21 (Sat, 21 Dec 2013) Changed paths: M www/src/index.jade M www/src/scripts/controllers/buildController.coffee M www/src/scripts/controllers/builderController.coffee M www/src/scripts/controllers/buildersController.coffee A www/src/scripts/controllers/logController.coffee A www/src/scripts/directives/logviewer.coffee M www/src/scripts/routes.coffee A www/src/styles/animations.less A www/src/styles/colors.less M www/src/styles/styles.less M www/src/views/build.jade M www/src/views/builder.jade M www/src/views/builders.jade M www/src/views/directives/basefield.jade A www/src/views/directives/logviewer.jade A www/src/views/log.jade Log Message: ----------- UI updates for the latest data api changes - New ui for logs - updated UI for builder status, with better integrated status colors - cleanup of css files Signed-off-by: Pierre Tardy Commit: c0555f74e7717dfa692b878d50c84aaaf62ea592 https://github.com/buildbot/buildbot/commit/c0555f74e7717dfa692b878d50c84aaaf62ea592 Author: Dustin J. Mitchell Date: 2013-12-22 (Sun, 22 Dec 2013) Changed paths: M www/src/index.jade M www/src/scripts/controllers/buildController.coffee M www/src/scripts/controllers/builderController.coffee M www/src/scripts/controllers/buildersController.coffee A www/src/scripts/controllers/logController.coffee A www/src/scripts/directives/logviewer.coffee M www/src/scripts/routes.coffee A www/src/styles/animations.less A www/src/styles/colors.less M www/src/styles/styles.less M www/src/views/build.jade M www/src/views/builder.jade M www/src/views/builders.jade M www/src/views/directives/basefield.jade A www/src/views/directives/logviewer.jade A www/src/views/log.jade Log Message: ----------- Merge branch 'nine_ui' of git://github.com/tardyp/buildbot into nine Compare: https://github.com/buildbot/buildbot/compare/4266c7ba94bd...c0555f74e771 From trac at buildbot.net Mon Dec 23 07:01:22 2013 From: trac at buildbot.net (Buildbot trac) Date: Mon, 23 Dec 2013 07:01:22 -0000 Subject: [Buildbot-commits] [Buildbot] #2612: Identification of Students Message-ID: <042.ba6c13fb13b67134f656fbbbaf4cd62a@buildbot.net> #2612: Identification of Students -----------------------+----------------------- Reporter: WaiWheelis | Owner: Type: undecided | Status: new Priority: major | Milestone: undecided Version: 0.8.8 | Keywords: -----------------------+----------------------- I think that the consistent dressed in technique in outstanding schools is the best, as it promotes equivalent rights, amongst the greater education student fraternity. It guarantees the equivalent therapy, of students, regardless of their economical qualifications scenes. This consistent outfit program code proves important, in the running of university matters, by the administration. It guarantees the easy identification of students, and therefore, it becomes easy to enforce, [http://www.poweredessays.com/essay-writer read next] the organization's guidelines. Uniforms are relatively cost- effective, creating this technique even more advantageous and realistic. The technique of personal option in university outfits has several disadvantages. That results in my conclusion, that the consistent technique is the best. -- Ticket URL: Buildbot Buildbot: build/test automation From noreply at github.com Mon Dec 23 15:02:58 2013 From: noreply at github.com (GitHub) Date: Mon, 23 Dec 2013 07:02:58 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] affab7: Fix decode comments Message-ID: <52b850a27ac2e_65831133d54456ce@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: affab71e17e3e3e38bb2d802c29301cebfb707e4 https://github.com/buildbot/buildbot/commit/affab71e17e3e3e38bb2d802c29301cebfb707e4 Author: Aleksey Vasenev Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/status/web/build.py Log Message: ----------- Fix decode comments Commit: 101f63d4e82ae50e18f53a135a678f53d44bcc77 https://github.com/buildbot/buildbot/commit/101f63d4e82ae50e18f53a135a678f53d44bcc77 Author: Aleksey Vasenev Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/steps/source/base.py M master/buildbot/steps/transfer.py M master/buildbot/test/unit/test_schedulers_timed_NightlyBase.py M master/buildbot/test/unit/test_steps_source_repo.py M master/buildbot/test/util/sourcesteps.py Log Message: ----------- Fix tests Commit: 0c333505972939fdd5456e67de1c3fa91ea75450 https://github.com/buildbot/buildbot/commit/0c333505972939fdd5456e67de1c3fa91ea75450 Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/status/web/build.py M master/buildbot/steps/source/base.py M master/buildbot/steps/transfer.py M master/buildbot/test/unit/test_schedulers_timed_NightlyBase.py M master/buildbot/test/unit/test_steps_source_repo.py M master/buildbot/test/util/sourcesteps.py Log Message: ----------- Merge branch 'fix_comments_decode' of git://github.com/Ratio2/buildbot Compare: https://github.com/buildbot/buildbot/compare/e0cea86342ec...0c3335059729 From noreply at github.com Mon Dec 23 20:23:19 2013 From: noreply at github.com (GitHub) Date: Mon, 23 Dec 2013 12:23:19 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] f51827: Revert "Merge branch 'SlaveInfo' of git://github.c... Message-ID: <52b89bb7c4c84_53eb505d4852721@hookshot-fe1-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: f518276b3a6e88a6b079a4e2661a152087eedd15 https://github.com/buildbot/buildbot/commit/f518276b3a6e88a6b079a4e2661a152087eedd15 Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/process/properties.py M master/buildbot/status/slave.py M master/buildbot/steps/master.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_process_properties.py R master/buildbot/test/unit/test_status_slave.py M master/docs/manual/cfg-buildsteps.rst M master/docs/manual/cfg-properties.rst M master/docs/relnotes/index.rst Log Message: ----------- Revert "Merge branch 'SlaveInfo' of git://github.com/jaredgrubb/buildbot" This reverts commit 1c5973413aa3b7e5f2f197b488cd58206b7ac057, reversing changes made to bf5c148e7b427c1f685ce846696a90ed2dc24704. See https://github.com/buildbot/buildbot/pull/880 for details on why this was reverted. Conflicts: master/buildbot/status/slave.py master/docs/relnotes/index.rst From noreply at github.com Mon Dec 23 20:36:49 2013 From: noreply at github.com (GitHub) Date: Mon, 23 Dec 2013 12:36:49 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] cb5c9c: Added MultipleFileUpload step. Message-ID: <52b89ee16d2a1_3841d15d587763c@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: cb5c9cc96b780fcfa4413b758a57fba72c031373 https://github.com/buildbot/buildbot/commit/cb5c9cc96b780fcfa4413b758a57fba72c031373 Author: Jonas Pommerening Date: 2013-11-19 (Tue, 19 Nov 2013) Changed paths: M master/buildbot/steps/transfer.py M master/buildbot/test/unit/test_steps_transfer.py Log Message: ----------- Added MultipleFileUpload step. Use this to upload multiple files at once. Supports all the options of FileUpload and DirectoryUpload. Makes use of the "stat" command to determine the kind of file that is uploaded. "Skips" if slavesrcs is an empty list. "slavesrcs", "masterdest" and "url" are renderable. transfer.MultipleFileUpload(slavesrcs=['some/file', 'some/directory'], masterdest='targetdir') Commit: 4467c0a2a10b1fde62a534a729eaddc5744fedc3 https://github.com/buildbot/buildbot/commit/4467c0a2a10b1fde62a534a729eaddc5744fedc3 Author: Jonas Pommerening Date: 2013-11-19 (Tue, 19 Nov 2013) Changed paths: M master/buildbot/test/unit/test_steps_transfer.py Log Message: ----------- Refactored FileUpload test Commit: 384c7f7f6f8cc8776253f96a8e06e71f2e3f13a4 https://github.com/buildbot/buildbot/commit/384c7f7f6f8cc8776253f96a8e06e71f2e3f13a4 Author: Jonas Pommerening Date: 2013-11-19 (Tue, 19 Nov 2013) Changed paths: M master/buildbot/test/unit/test_steps_transfer.py Log Message: ----------- Type (timestamp -> srctimestamp) Yikes! Thank you, Travis! Commit: 28f0ebb21829b31fa6e32f7f693bb4677491df9b https://github.com/buildbot/buildbot/commit/28f0ebb21829b31fa6e32f7f693bb4677491df9b Author: Jonas Pommerening Date: 2013-11-19 (Tue, 19 Nov 2013) Changed paths: M master/buildbot/steps/transfer.py M master/buildbot/test/unit/test_steps_transfer.py Log Message: ----------- obligatory pep8 commit Commit: b34ee498602e2a0dcba380dd2a83e236087ab89d https://github.com/buildbot/buildbot/commit/b34ee498602e2a0dcba380dd2a83e236087ab89d Author: Dustin J. Mitchell Date: 2013-11-20 (Wed, 20 Nov 2013) Changed paths: R master/buildbot/changes/hgbuildbot.py M master/buildbot/test/test_extra_coverage.py A master/contrib/hgbuildbot.py M master/docs/manual/cfg-changesources.rst M master/docs/relnotes/index.rst Log Message: ----------- move hgbuildbot to contrib and add warnings Commit: da06910c6902ea39d45fc9210d52e30623479bba https://github.com/buildbot/buildbot/commit/da06910c6902ea39d45fc9210d52e30623479bba Author: Jonas Pommerening Date: 2013-11-24 (Sun, 24 Nov 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst M master/docs/relnotes/index.rst Log Message: ----------- Manual, release notes for MultipleFileUpload Commit: c683b207b59b3f45231e449cc5ef92be082c1377 https://github.com/buildbot/buildbot/commit/c683b207b59b3f45231e449cc5ef92be082c1377 Author: Jonas Pommerening Date: 2013-11-24 (Sun, 24 Nov 2013) Changed paths: M master/buildbot/steps/transfer.py Log Message: ----------- added the "missing commit" to the rebased branch Commit: 187e46634513d18f4d4ea758614d99d9f82e886c https://github.com/buildbot/buildbot/commit/187e46634513d18f4d4ea758614d99d9f82e886c Author: Alexandr Plesovskih Date: 2013-11-25 (Mon, 25 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- Made small stylistic changes Commit: dfe6f4f31dee6f186e650989e6e8a7cbe9b62281 https://github.com/buildbot/buildbot/commit/dfe6f4f31dee6f186e650989e6e8a7cbe9b62281 Author: Alexandr Plesovskih Date: 2013-11-25 (Mon, 25 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- add event with change universal handler Commit: 6993e5f567ec5a856643474b305fceb3bd12c0eb https://github.com/buildbot/buildbot/commit/6993e5f567ec5a856643474b305fceb3bd12c0eb Author: Alexandr Plesovskih Date: 2013-11-26 (Tue, 26 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- add event handle properties Commit: eb506f7dfa1dd9c8ecb2cbcad7e0d1befd6c5a47 https://github.com/buildbot/buildbot/commit/eb506f7dfa1dd9c8ecb2cbcad7e0d1befd6c5a47 Author: Alexandr Plesovskih Date: 2013-11-26 (Tue, 26 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- Fix stupid bug Commit: b1b3144c37d9c4032e05e9051459f55412f1b14f https://github.com/buildbot/buildbot/commit/b1b3144c37d9c4032e05e9051459f55412f1b14f Author: Alexandr Plesovskih Date: 2013-11-26 (Tue, 26 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- Fix stupid bug V2 Commit: 8f3f7b7fec111ec09b27c088d84a7ab25b166a39 https://github.com/buildbot/buildbot/commit/8f3f7b7fec111ec09b27c088d84a7ab25b166a39 Author: Alexandr Plesovskih Date: 2013-11-28 (Thu, 28 Nov 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- Fix. List argument, bad way Commit: d33db6257028ba068eaba119363d54e191944bbd https://github.com/buildbot/buildbot/commit/d33db6257028ba068eaba119363d54e191944bbd Author: Alexandr Plesovskih Date: 2013-11-28 (Thu, 28 Nov 2013) Changed paths: M .travis.yml M CONTRIBUTING.md M MAINTAINERS.txt A common/fiximports.py A common/hooks/post-commit A common/merge_and_pep8.sh M common/pep8rc M common/pylintrc A common/test_fiximports.py M common/validate.sh M master/buildbot/buildrequest.py M master/buildbot/buildslave/__init__.py M master/buildbot/buildslave/base.py M master/buildbot/buildslave/ec2.py M master/buildbot/buildslave/libvirt.py M master/buildbot/buildslave/openstack.py M master/buildbot/changes/base.py M master/buildbot/changes/bonsaipoller.py M master/buildbot/changes/changes.py M master/buildbot/changes/filter.py M master/buildbot/changes/gitpoller.py M master/buildbot/changes/hgbuildbot.py M master/buildbot/changes/hgpoller.py M master/buildbot/changes/mail.py M master/buildbot/changes/manager.py M master/buildbot/changes/p4poller.py M master/buildbot/changes/pb.py M master/buildbot/changes/svnpoller.py M master/buildbot/clients/base.py M master/buildbot/clients/debug.py M master/buildbot/clients/gtkPanes.py M master/buildbot/clients/sendchange.py M master/buildbot/clients/text.py M master/buildbot/clients/tryclient.py M master/buildbot/clients/usersclient.py M master/buildbot/config.py M master/buildbot/db/base.py M master/buildbot/db/buildrequests.py M master/buildbot/db/builds.py M master/buildbot/db/buildsets.py M master/buildbot/db/buildslaves.py M master/buildbot/db/changes.py M master/buildbot/db/connector.py M master/buildbot/db/enginestrategy.py M master/buildbot/db/exceptions.py M master/buildbot/db/migrate/versions/001_initial.py M master/buildbot/db/migrate/versions/002_add_proj_repo.py M master/buildbot/db/migrate/versions/003_scheduler_class_name.py M master/buildbot/db/migrate/versions/004_add_autoincrement.py M master/buildbot/db/migrate/versions/005_add_indexes.py M master/buildbot/db/migrate/versions/006_drop_last_access.py M master/buildbot/db/migrate/versions/007_add_object_tables.py M master/buildbot/db/migrate/versions/008_add_scheduler_changes_index.py M master/buildbot/db/migrate/versions/009_add_patch_author.py M master/buildbot/db/migrate/versions/010_fix_column_lengths.py M master/buildbot/db/migrate/versions/011_add_buildrequest_claims.py M master/buildbot/db/migrate/versions/012_add_users_table.py M master/buildbot/db/migrate/versions/013_remove_schedulers_state_column.py M master/buildbot/db/migrate/versions/014_add_users_userpass_columns.py M master/buildbot/db/migrate/versions/015_remove_bad_master_objectid.py M master/buildbot/db/migrate/versions/016_restore_buildrequest_indices.py M master/buildbot/db/migrate/versions/017_restore_other_indices.py M master/buildbot/db/migrate/versions/018_add_sourcestampset.py M master/buildbot/db/migrate/versions/019_merge_schedulers_to_objects.py M master/buildbot/db/migrate/versions/020_remove_change_links.py M master/buildbot/db/migrate/versions/021_fix_postgres_sequences.py M master/buildbot/db/migrate/versions/022_add_codebase.py M master/buildbot/db/migrate/versions/023_increase_comments_property_lengths.py M master/buildbot/db/migrate/versions/024_add_buildslaves_table.py M master/buildbot/db/model.py M master/buildbot/db/pool.py M master/buildbot/db/schedulers.py M master/buildbot/db/sourcestamps.py M master/buildbot/db/sourcestampsets.py M master/buildbot/db/state.py M master/buildbot/db/types/json.py M master/buildbot/db/users.py M master/buildbot/ec2buildslave.py M master/buildbot/interfaces.py M master/buildbot/libvirtbuildslave.py M master/buildbot/locks.py M master/buildbot/manhole.py M master/buildbot/master.py M master/buildbot/monkeypatches/__init__.py M master/buildbot/monkeypatches/bug4520.py M master/buildbot/monkeypatches/bug4881.py M master/buildbot/monkeypatches/bug5079.py M master/buildbot/monkeypatches/decorators.py M master/buildbot/monkeypatches/gatherResults.py M master/buildbot/monkeypatches/python14653.py M master/buildbot/monkeypatches/servicechecks.py M master/buildbot/monkeypatches/sqlalchemy2189.py M master/buildbot/monkeypatches/sqlalchemy2364.py M master/buildbot/monkeypatches/testcase_assert.py M master/buildbot/monkeypatches/testcase_patch.py M master/buildbot/monkeypatches/testcase_synctest.py M master/buildbot/pbmanager.py M master/buildbot/pbutil.py M master/buildbot/process/base.py M master/buildbot/process/botmaster.py M master/buildbot/process/build.py M master/buildbot/process/builder.py M master/buildbot/process/buildrequest.py M master/buildbot/process/buildrequestdistributor.py M master/buildbot/process/buildstep.py M master/buildbot/process/cache.py M master/buildbot/process/debug.py M master/buildbot/process/factory.py M master/buildbot/process/metrics.py M master/buildbot/process/properties.py M master/buildbot/process/slavebuilder.py M master/buildbot/process/subunitlogobserver.py M master/buildbot/process/users/manager.py M master/buildbot/process/users/manual.py M master/buildbot/process/users/users.py M master/buildbot/revlinks.py M master/buildbot/scheduler.py M master/buildbot/schedulers/base.py M master/buildbot/schedulers/basic.py M master/buildbot/schedulers/dependent.py M master/buildbot/schedulers/filter.py M master/buildbot/schedulers/forcesched.py M master/buildbot/schedulers/manager.py M master/buildbot/schedulers/timed.py M master/buildbot/schedulers/triggerable.py M master/buildbot/schedulers/trysched.py M master/buildbot/scripts/base.py M master/buildbot/scripts/buildbot_tac.tmpl M master/buildbot/scripts/checkconfig.py M master/buildbot/scripts/create_master.py M master/buildbot/scripts/debugclient.py M master/buildbot/scripts/logwatcher.py M master/buildbot/scripts/reconfig.py M master/buildbot/scripts/restart.py M master/buildbot/scripts/runner.py M master/buildbot/scripts/sendchange.py M master/buildbot/scripts/start.py M master/buildbot/scripts/statusgui.py M master/buildbot/scripts/statuslog.py M master/buildbot/scripts/stop.py M master/buildbot/scripts/trycmd.py M master/buildbot/scripts/tryserver.py M master/buildbot/scripts/upgrade_master.py M master/buildbot/scripts/user.py M master/buildbot/sourcestamp.py M master/buildbot/status/__init__.py M master/buildbot/status/base.py M master/buildbot/status/build.py M master/buildbot/status/builder.py M master/buildbot/status/buildrequest.py M master/buildbot/status/buildset.py M master/buildbot/status/buildstep.py M master/buildbot/status/client.py M master/buildbot/status/event.py M master/buildbot/status/github.py M master/buildbot/status/logfile.py M master/buildbot/status/mail.py M master/buildbot/status/master.py M master/buildbot/status/persistent_queue.py M master/buildbot/status/progress.py M master/buildbot/status/results.py M master/buildbot/status/slave.py M master/buildbot/status/status_gerrit.py M master/buildbot/status/status_push.py M master/buildbot/status/testresult.py M master/buildbot/status/tinderbox.py M master/buildbot/status/web/about.py M master/buildbot/status/web/auth.py M master/buildbot/status/web/authz.py M master/buildbot/status/web/base.py M master/buildbot/status/web/baseweb.py 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/change_hook.py M master/buildbot/status/web/changes.py M master/buildbot/status/web/console.py M master/buildbot/status/web/feeds.py M master/buildbot/status/web/grid.py M master/buildbot/status/web/hooks/__init__.py M master/buildbot/status/web/hooks/base.py M master/buildbot/status/web/hooks/github.py M master/buildbot/status/web/hooks/gitlab.py M master/buildbot/status/web/hooks/gitorious.py M master/buildbot/status/web/hooks/googlecode.py M master/buildbot/status/web/hooks/poller.py M master/buildbot/status/web/logs.py M master/buildbot/status/web/olpb.py M master/buildbot/status/web/pngstatus.py M master/buildbot/status/web/root.py M master/buildbot/status/web/session.py M master/buildbot/status/web/slaves.py M master/buildbot/status/web/status_json.py M master/buildbot/status/web/step.py M master/buildbot/status/web/templates/forms.html M master/buildbot/status/web/templates/grid_macros.html M master/buildbot/status/web/templates/waterfallhelp.html M master/buildbot/status/web/tests.py M master/buildbot/status/web/users.py M master/buildbot/status/web/waterfall.py M master/buildbot/status/words.py M master/buildbot/steps/http.py M master/buildbot/steps/master.py M master/buildbot/steps/maxq.py M master/buildbot/steps/mswin.py M master/buildbot/steps/mtrlogobserver.py M master/buildbot/steps/package/deb/lintian.py M master/buildbot/steps/package/deb/pbuilder.py M master/buildbot/steps/package/rpm/__init__.py M master/buildbot/steps/package/rpm/mock.py M master/buildbot/steps/package/rpm/rpmbuild.py M master/buildbot/steps/package/rpm/rpmlint.py M master/buildbot/steps/package/rpm/rpmspec.py M master/buildbot/steps/python.py M master/buildbot/steps/python_twisted.py M master/buildbot/steps/shell.py M master/buildbot/steps/slave.py M master/buildbot/steps/source/__init__.py M master/buildbot/steps/source/base.py M master/buildbot/steps/source/bzr.py M master/buildbot/steps/source/cvs.py M master/buildbot/steps/source/darcs.py M master/buildbot/steps/source/gerrit.py M master/buildbot/steps/source/git.py M master/buildbot/steps/source/mercurial.py M master/buildbot/steps/source/mtn.py M master/buildbot/steps/source/oldsource.py M master/buildbot/steps/source/p4.py M master/buildbot/steps/source/repo.py M master/buildbot/steps/source/svn.py M master/buildbot/steps/subunit.py M master/buildbot/steps/transfer.py M master/buildbot/steps/trigger.py M master/buildbot/steps/vstudio.py M master/buildbot/test/__init__.py M master/buildbot/test/fake/botmaster.py M master/buildbot/test/fake/fakebuild.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/fake/fakemaster.py M master/buildbot/test/fake/libvirt.py M master/buildbot/test/fake/openstack.py M master/buildbot/test/fake/pbmanager.py M master/buildbot/test/fake/remotecommand.py M master/buildbot/test/fake/slave.py M master/buildbot/test/fake/state.py M master/buildbot/test/fake/web.py M master/buildbot/test/fuzz/test_lru.py M master/buildbot/test/integration/test_configs.py M master/buildbot/test/integration/test_master.py M master/buildbot/test/integration/test_slave_comm.py M master/buildbot/test/integration/test_upgrade.py M master/buildbot/test/interfaces/test_logfile.py M master/buildbot/test/interfaces/test_remotecommand.py M master/buildbot/test/regressions/test_bad_change_properties_rows.py M master/buildbot/test/regressions/test_import_unicode_changes.py M master/buildbot/test/regressions/test_oldpaths.py M master/buildbot/test/regressions/test_shell_command_properties.py M master/buildbot/test/regressions/test_sourcestamp_revision.py M master/buildbot/test/regressions/test_steps_shell_WarningCountingShellCommand.py M master/buildbot/test/regressions/test_unpickling.py M master/buildbot/test/test_extra_coverage.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_buildslave_libvirt.py M master/buildbot/test/unit/test_buildslave_openstack.py M master/buildbot/test/unit/test_changes_base.py M master/buildbot/test/unit/test_changes_bonsaipoller.py M master/buildbot/test/unit/test_changes_changes.py M master/buildbot/test/unit/test_changes_filter.py M master/buildbot/test/unit/test_changes_gerritchangesource.py M master/buildbot/test/unit/test_changes_gitpoller.py M master/buildbot/test/unit/test_changes_hgpoller.py M master/buildbot/test/unit/test_changes_mail.py M master/buildbot/test/unit/test_changes_mail_CVSMaildirSource.py M master/buildbot/test/unit/test_changes_manager.py M master/buildbot/test/unit/test_changes_p4poller.py M master/buildbot/test/unit/test_changes_pb.py M master/buildbot/test/unit/test_changes_svnpoller.py M master/buildbot/test/unit/test_clients_sendchange.py M master/buildbot/test/unit/test_clients_usersclient.py M master/buildbot/test/unit/test_config.py M master/buildbot/test/unit/test_contrib_buildbot_cvs_mail.py M master/buildbot/test/unit/test_db_base.py M master/buildbot/test/unit/test_db_buildrequests.py M master/buildbot/test/unit/test_db_builds.py M master/buildbot/test/unit/test_db_buildsets.py M master/buildbot/test/unit/test_db_buildslaves.py M master/buildbot/test/unit/test_db_changes.py M master/buildbot/test/unit/test_db_connector.py M master/buildbot/test/unit/test_db_enginestrategy.py M master/buildbot/test/unit/test_db_migrate_versions_011_add_buildrequest_claims.py M master/buildbot/test/unit/test_db_migrate_versions_015_remove_bad_master_objectid.py M master/buildbot/test/unit/test_db_migrate_versions_016_restore_buildrequest_indices.py M master/buildbot/test/unit/test_db_migrate_versions_017_restore_other_indices.py M master/buildbot/test/unit/test_db_migrate_versions_018_add_sourcestampset.py M master/buildbot/test/unit/test_db_migrate_versions_019_merge_schedulers_to_objects.py M master/buildbot/test/unit/test_db_migrate_versions_020_remove_change_links.py M master/buildbot/test/unit/test_db_migrate_versions_021_fix_postgres_sequences.py M master/buildbot/test/unit/test_db_migrate_versions_022_add_codebase.py M master/buildbot/test/unit/test_db_migrate_versions_023_increase_comments_property_lengths.py M master/buildbot/test/unit/test_db_migrate_versions_024_add_buildslaves_table.py M master/buildbot/test/unit/test_db_model.py M master/buildbot/test/unit/test_db_pool.py M master/buildbot/test/unit/test_db_schedulers.py M master/buildbot/test/unit/test_db_sourcestamps.py M master/buildbot/test/unit/test_db_sourcestampsets.py M master/buildbot/test/unit/test_db_state.py M master/buildbot/test/unit/test_db_users.py M master/buildbot/test/unit/test_master.py M master/buildbot/test/unit/test_pbmanager.py M master/buildbot/test/unit/test_process_botmaster_BotMaster.py M master/buildbot/test/unit/test_process_botmaster_DuplicateSlaveArbitrator.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_process_builder.py M master/buildbot/test/unit/test_process_buildrequest.py M master/buildbot/test/unit/test_process_buildrequestdistributor_BuildRequestDistributor.py M master/buildbot/test/unit/test_process_buildstep.py M master/buildbot/test/unit/test_process_cache.py M master/buildbot/test/unit/test_process_debug.py M master/buildbot/test/unit/test_process_factory.py M master/buildbot/test/unit/test_process_metrics.py M master/buildbot/test/unit/test_process_properties.py M master/buildbot/test/unit/test_process_users_manager.py M master/buildbot/test/unit/test_process_users_manual.py M master/buildbot/test/unit/test_process_users_users.py M master/buildbot/test/unit/test_revlinks.py M master/buildbot/test/unit/test_schedulers_base.py M master/buildbot/test/unit/test_schedulers_basic.py M master/buildbot/test/unit/test_schedulers_dependent.py M master/buildbot/test/unit/test_schedulers_forcesched.py M master/buildbot/test/unit/test_schedulers_manager.py M master/buildbot/test/unit/test_schedulers_timed_Nightly.py M master/buildbot/test/unit/test_schedulers_timed_NightlyBase.py M master/buildbot/test/unit/test_schedulers_timed_NightlyTriggerable.py M master/buildbot/test/unit/test_schedulers_timed_Periodic.py M master/buildbot/test/unit/test_schedulers_timed_Timed.py M master/buildbot/test/unit/test_schedulers_triggerable.py M master/buildbot/test/unit/test_schedulers_trysched.py M master/buildbot/test/unit/test_scripts_base.py M master/buildbot/test/unit/test_scripts_checkconfig.py M master/buildbot/test/unit/test_scripts_create_master.py M master/buildbot/test/unit/test_scripts_restart.py M master/buildbot/test/unit/test_scripts_runner.py M master/buildbot/test/unit/test_scripts_sendchange.py M master/buildbot/test/unit/test_scripts_start.py M master/buildbot/test/unit/test_scripts_statuslog.py M master/buildbot/test/unit/test_scripts_stop.py M master/buildbot/test/unit/test_scripts_trycmd.py M master/buildbot/test/unit/test_scripts_tryserver.py M master/buildbot/test/unit/test_scripts_upgrade_master.py M master/buildbot/test/unit/test_scripts_user.py M master/buildbot/test/unit/test_sourcestamp.py M master/buildbot/test/unit/test_status_build.py M master/buildbot/test/unit/test_status_builder_cache.py M master/buildbot/test/unit/test_status_buildstep.py M master/buildbot/test/unit/test_status_client.py M master/buildbot/test/unit/test_status_github.py M master/buildbot/test/unit/test_status_logfile.py M master/buildbot/test/unit/test_status_mail.py M master/buildbot/test/unit/test_status_master.py M master/buildbot/test/unit/test_status_persistent_queue.py M master/buildbot/test/unit/test_status_progress.py M master/buildbot/test/unit/test_status_web_auth_HTPasswdAprAuth.py M master/buildbot/test/unit/test_status_web_auth_HTPasswdAuth.py M master/buildbot/test/unit/test_status_web_authz_Authz.py M master/buildbot/test/unit/test_status_web_base.py M master/buildbot/test/unit/test_status_web_hook.py M master/buildbot/test/unit/test_status_web_hooks_bitbucket.py M master/buildbot/test/unit/test_status_web_hooks_github.py M master/buildbot/test/unit/test_status_web_hooks_gitlab.py M master/buildbot/test/unit/test_status_web_hooks_gitorious.py M master/buildbot/test/unit/test_status_web_hooks_googlecode.py M master/buildbot/test/unit/test_status_web_hooks_poller.py M master/buildbot/test/unit/test_status_web_links.py M master/buildbot/test/unit/test_status_web_statuspng.py M master/buildbot/test/unit/test_status_words.py M master/buildbot/test/unit/test_steps_http.py M master/buildbot/test/unit/test_steps_master.py M master/buildbot/test/unit/test_steps_maxq.py M master/buildbot/test/unit/test_steps_mswin.py M master/buildbot/test/unit/test_steps_mtrlogobserver.py M master/buildbot/test/unit/test_steps_package_deb_lintian.py M master/buildbot/test/unit/test_steps_package_deb_pbuilder.py M master/buildbot/test/unit/test_steps_package_rpm_mock.py M master/buildbot/test/unit/test_steps_package_rpm_rpmbuild.py M master/buildbot/test/unit/test_steps_package_rpm_rpmlint.py M master/buildbot/test/unit/test_steps_python.py M master/buildbot/test/unit/test_steps_python_twisted.py M master/buildbot/test/unit/test_steps_shell.py M master/buildbot/test/unit/test_steps_slave.py M master/buildbot/test/unit/test_steps_source_base_Source.py M master/buildbot/test/unit/test_steps_source_bzr.py M master/buildbot/test/unit/test_steps_source_cvs.py M master/buildbot/test/unit/test_steps_source_darcs.py M master/buildbot/test/unit/test_steps_source_gerrit.py M master/buildbot/test/unit/test_steps_source_git.py M master/buildbot/test/unit/test_steps_source_mercurial.py M master/buildbot/test/unit/test_steps_source_mtn.py M master/buildbot/test/unit/test_steps_source_oldsource.py M master/buildbot/test/unit/test_steps_source_oldsource_ComputeRepositoryURL.py M master/buildbot/test/unit/test_steps_source_oldsource_Repo.py M master/buildbot/test/unit/test_steps_source_p4.py M master/buildbot/test/unit/test_steps_source_repo.py M master/buildbot/test/unit/test_steps_source_svn.py M master/buildbot/test/unit/test_steps_subunit.py M master/buildbot/test/unit/test_steps_transfer.py M master/buildbot/test/unit/test_steps_trigger.py M master/buildbot/test/unit/test_steps_vstudio.py M master/buildbot/test/unit/test_test_util_gpo.py M master/buildbot/test/unit/test_util.py M master/buildbot/test/unit/test_util_ComparableMixin.py M master/buildbot/test/unit/test_util_ansicodes.py M master/buildbot/test/unit/test_util_bbcollections.py M master/buildbot/test/unit/test_util_eventual.py M master/buildbot/test/unit/test_util_lru.py M master/buildbot/test/unit/test_util_maildir.py M master/buildbot/test/unit/test_util_misc.py M master/buildbot/test/unit/test_util_netstrings.py M master/buildbot/test/unit/test_util_sautils.py M master/buildbot/test/unit/test_util_state.py M master/buildbot/test/unit/test_util_subscriptions.py M master/buildbot/test/util/change_import.py M master/buildbot/test/util/changesource.py M master/buildbot/test/util/compat.py M master/buildbot/test/util/config.py M master/buildbot/test/util/connector_component.py M master/buildbot/test/util/db.py M master/buildbot/test/util/dirs.py A master/buildbot/test/util/fuzz.py M master/buildbot/test/util/gpo.py M master/buildbot/test/util/interfaces.py M master/buildbot/test/util/logging.py M master/buildbot/test/util/migration.py M master/buildbot/test/util/misc.py M master/buildbot/test/util/pbmanager.py M master/buildbot/test/util/properties.py M master/buildbot/test/util/querylog.py M master/buildbot/test/util/scheduler.py M master/buildbot/test/util/sourcesteps.py M master/buildbot/test/util/steps.py M master/buildbot/util/__init__.py M master/buildbot/util/bbcollections.py M master/buildbot/util/croniter.py M master/buildbot/util/eventual.py M master/buildbot/util/lru.py M master/buildbot/util/maildir.py M master/buildbot/util/misc.py M master/buildbot/util/netstrings.py M master/buildbot/util/sautils.py M master/buildbot/util/state.py M master/buildbot/util/subscription.py M master/contrib/SimpleConfig.py M master/contrib/bb_applet.py M master/contrib/bitbucket_buildbot.py M master/contrib/bk_buildbot.py M master/contrib/buildbot_cvs_mail.py M master/contrib/buildbot_json.py M master/contrib/bzr_buildbot.py M master/contrib/check_buildbot.py M master/contrib/coverage2text.py M master/contrib/darcs_buildbot.py M master/contrib/fakechange.py M master/contrib/fakemaster.py M master/contrib/fix_changes_pickle_encoding.py M master/contrib/git_buildbot.py M master/contrib/github_buildbot.py M master/contrib/googlecode_atom.py M master/contrib/post_build_request.py M master/contrib/run_maxq.py M master/contrib/svn_buildbot.py M master/contrib/svn_watcher.py M master/contrib/svnpoller.py M master/contrib/trac/bbwatcher/api.py M master/contrib/trac/bbwatcher/model.py M master/contrib/trac/bbwatcher/web_ui.py M master/contrib/trac/setup.py M master/contrib/viewcvspoll.py M master/contrib/webhook_status.py M master/contrib/windows/buildbot_service.py R master/docs/PyCon-2003/Makefile R master/docs/PyCon-2003/bb-slides.py R master/docs/PyCon-2003/source/buildbot.lore R master/docs/PyCon-2003/source/overview.svg R master/docs/PyCon-2003/source/slave.svg R master/docs/PyCon-2003/source/template.tpl R master/docs/PyCon-2003/stylesheet.css R master/docs/PyCon-2003/waterfall.png M master/docs/bbdocs/ext.py M master/docs/conf.py M master/docs/developer/master-slave.rst M master/docs/manual/cfg-buildfactories.rst M master/docs/manual/cfg-schedulers.rst M master/docs/manual/cfg-statustargets.rst M master/docs/relnotes/index.rst M master/setup.py M slave/buildslave/bot.py M slave/buildslave/commands/base.py M slave/buildslave/commands/bk.py M slave/buildslave/commands/bzr.py M slave/buildslave/commands/cvs.py M slave/buildslave/commands/darcs.py M slave/buildslave/commands/fs.py M slave/buildslave/commands/git.py M slave/buildslave/commands/hg.py M slave/buildslave/commands/mtn.py M slave/buildslave/commands/p4.py M slave/buildslave/commands/registry.py M slave/buildslave/commands/repo.py M slave/buildslave/commands/shell.py M slave/buildslave/commands/svn.py M slave/buildslave/commands/transfer.py M slave/buildslave/commands/utils.py M slave/buildslave/exceptions.py M slave/buildslave/interfaces.py M slave/buildslave/monkeypatches/__init__.py M slave/buildslave/monkeypatches/bug4881.py M slave/buildslave/monkeypatches/bug5079.py M slave/buildslave/monkeypatches/testcase_assert.py M slave/buildslave/pbutil.py M slave/buildslave/runprocess.py M slave/buildslave/scripts/base.py M slave/buildslave/scripts/create_slave.py M slave/buildslave/scripts/logwatcher.py M slave/buildslave/scripts/restart.py M slave/buildslave/scripts/runner.py M slave/buildslave/scripts/start.py M slave/buildslave/scripts/stop.py M slave/buildslave/scripts/upgrade_slave.py M slave/buildslave/test/__init__.py M slave/buildslave/test/fake/remote.py M slave/buildslave/test/fake/runprocess.py M slave/buildslave/test/fake/slavebuilder.py M slave/buildslave/test/test_extra_coverage.py M slave/buildslave/test/unit/runprocess-scripts.py M slave/buildslave/test/unit/test_bot.py M slave/buildslave/test/unit/test_bot_BuildSlave.py M slave/buildslave/test/unit/test_commands_base.py M slave/buildslave/test/unit/test_commands_bk.py M slave/buildslave/test/unit/test_commands_bzr.py M slave/buildslave/test/unit/test_commands_cvs.py M slave/buildslave/test/unit/test_commands_darcs.py M slave/buildslave/test/unit/test_commands_fs.py M slave/buildslave/test/unit/test_commands_git.py M slave/buildslave/test/unit/test_commands_hg.py M slave/buildslave/test/unit/test_commands_mtn.py M slave/buildslave/test/unit/test_commands_p4.py M slave/buildslave/test/unit/test_commands_registry.py M slave/buildslave/test/unit/test_commands_shell.py M slave/buildslave/test/unit/test_commands_svn.py M slave/buildslave/test/unit/test_commands_transfer.py M slave/buildslave/test/unit/test_commands_utils.py M slave/buildslave/test/unit/test_runprocess.py M slave/buildslave/test/unit/test_scripts_base.py M slave/buildslave/test/unit/test_scripts_create_slave.py M slave/buildslave/test/unit/test_scripts_restart.py M slave/buildslave/test/unit/test_scripts_runner.py M slave/buildslave/test/unit/test_scripts_start.py M slave/buildslave/test/unit/test_scripts_stop.py M slave/buildslave/test/unit/test_scripts_upgrade_slave.py M slave/buildslave/test/unit/test_util.py M slave/buildslave/test/util/command.py M slave/buildslave/test/util/compat.py M slave/buildslave/test/util/misc.py M slave/buildslave/test/util/sourcecommand.py M slave/buildslave/util.py M slave/contrib/windows/buildbot_service.py M slave/setup.py Log Message: ----------- Sync upstream Commit: a60dbb89df6f20d5d0098abc784606804f07bc35 https://github.com/buildbot/buildbot/commit/a60dbb89df6f20d5d0098abc784606804f07bc35 Author: Dustin J. Mitchell Date: 2013-11-28 (Thu, 28 Nov 2013) Changed paths: M master/docs/manual/cfg-statustargets.rst Log Message: ----------- Correct bug in example code Fixes #2598. Commit: 520606580ccac5b54d275a3fba1033848a5f5346 https://github.com/buildbot/buildbot/commit/520606580ccac5b54d275a3fba1033848a5f5346 Author: Dustin J. Mitchell Date: 2013-11-28 (Thu, 28 Nov 2013) Changed paths: R master/buildbot/changes/hgbuildbot.py M master/buildbot/test/test_extra_coverage.py A master/contrib/hgbuildbot.py M master/docs/manual/cfg-changesources.rst M master/docs/relnotes/0.8.6.rst M master/docs/relnotes/index.rst Log Message: ----------- Merge branch 'hgbuildbot-to-contrib' of git://github.com/djmitche/buildbot Commit: ff3528976130df75147e1f2139a67aaaff3dbd59 https://github.com/buildbot/buildbot/commit/ff3528976130df75147e1f2139a67aaaff3dbd59 Author: Dustin J. Mitchell Date: 2013-11-28 (Thu, 28 Nov 2013) Changed paths: M common/validate.sh Log Message: ----------- only check files that still exist Commit: 1bda7907dbf2a7ee3b85e01b71674b2f5dee9ec1 https://github.com/buildbot/buildbot/commit/1bda7907dbf2a7ee3b85e01b71674b2f5dee9ec1 Author: Dustin J. Mitchell Date: 2013-11-28 (Thu, 28 Nov 2013) Changed paths: M master/buildbot/process/buildstep.py A master/buildbot/process/logobserver.py A master/buildbot/process/remotecommand.py Log Message: ----------- refactor buildstep.py into smaller bits (backport from nine) Commit: 4158928bad08a878ae8fbbb31075505eea59f91f https://github.com/buildbot/buildbot/commit/4158928bad08a878ae8fbbb31075505eea59f91f Author: Jonas Pommerening Date: 2013-11-29 (Fri, 29 Nov 2013) Changed paths: M master/buildbot/steps/transfer.py Log Message: ----------- Added methods uploadDone and allUploadsDone Commit: bdc11a6df6976941fd0cee8ef844daec7beafba0 https://github.com/buildbot/buildbot/commit/bdc11a6df6976941fd0cee8ef844daec7beafba0 Author: Jonas Pommerening Date: 2013-11-29 (Fri, 29 Nov 2013) Changed paths: M master/buildbot/steps/transfer.py Log Message: ----------- uploadDone and allUploadsDone may return deferreds Commit: 17655c274b2e067f6153e80810f459b2e9b3ce63 https://github.com/buildbot/buildbot/commit/17655c274b2e067f6153e80810f459b2e9b3ce63 Author: Jonas Pommerening Date: 2013-11-29 (Fri, 29 Nov 2013) Changed paths: M master/buildbot/test/unit/test_steps_transfer.py Log Message: ----------- Added failure test cases Commit: d8b8277a763ee476caf42d34ba95f7c386843c9e https://github.com/buildbot/buildbot/commit/d8b8277a763ee476caf42d34ba95f7c386843c9e Author: Jonas Pommerening Date: 2013-11-29 (Fri, 29 Nov 2013) Changed paths: M master/buildbot/test/unit/test_steps_transfer.py Log Message: ----------- Added subclassing test Commit: a5a65e829d910223c7b47f2a33fae84e3ad18e02 https://github.com/buildbot/buildbot/commit/a5a65e829d910223c7b47f2a33fae84e3ad18e02 Author: Jonas Pommerening Date: 2013-11-29 (Fri, 29 Nov 2013) Changed paths: M master/buildbot/steps/transfer.py Log Message: ----------- Pulled runTransferCommand up to _TransferBuildStep Formerly runUploadCommand of MultipleFileUpload. The runTransferCommand function adds a callback to extract the result from the command instance and (optionally) ann error callback to cancel the command's writer. Commit: d7315892ccc3ccbed3ce1b9fa43e8f5562166c50 https://github.com/buildbot/buildbot/commit/d7315892ccc3ccbed3ce1b9fa43e8f5562166c50 Author: Jonas Pommerening Date: 2013-11-29 (Fri, 29 Nov 2013) Changed paths: M master/buildbot/steps/transfer.py M master/buildbot/test/unit/test_steps_transfer.py Log Message: ----------- Added test cases for upload errors Commit: 1844d495cbd8de2e6ddddcae66e458f125c3dd55 https://github.com/buildbot/buildbot/commit/1844d495cbd8de2e6ddddcae66e458f125c3dd55 Author: Jonas Pommerening Date: 2013-11-30 (Sat, 30 Nov 2013) Changed paths: M master/buildbot/test/unit/test_steps_transfer.py Log Message: ----------- Cleanup Commit: 2a7026e7354bddff0332771e7439fa70d1ebb67d https://github.com/buildbot/buildbot/commit/2a7026e7354bddff0332771e7439fa70d1ebb67d Author: Jonas Pommerening Date: 2013-11-30 (Sat, 30 Nov 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Added doc, example for uploadDone hooks Commit: 70f2e06e6cb49f0108d6c2d8ee4907e7e24a828a https://github.com/buildbot/buildbot/commit/70f2e06e6cb49f0108d6c2d8ee4907e7e24a828a Author: Dustin J. Mitchell Date: 2013-11-30 (Sat, 30 Nov 2013) Changed paths: M master/buildbot/steps/transfer.py M master/buildbot/test/unit/test_steps_transfer.py M master/docs/manual/cfg-buildsteps.rst M master/docs/relnotes/index.rst Log Message: ----------- Merge branch 'multiple-file-upload' of git://github.com/jpommerening/buildbot +autopep8 Commit: c94c933230dc1d06b6f3516d50f0cab9c43f50ba https://github.com/buildbot/buildbot/commit/c94c933230dc1d06b6f3516d50f0cab9c43f50ba Author: Alexandr Plesovskih Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- Returned to old string formatting Commit: 10fd9103c14852ab7e90c0eb838664fa61853403 https://github.com/buildbot/buildbot/commit/10fd9103c14852ab7e90c0eb838664fa61853403 Author: Alexandr Plesovskih Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py Log Message: ----------- microfix: string format Commit: c7a826eb6392acc4bc56b0e4708b11afdea02407 https://github.com/buildbot/buildbot/commit/c7a826eb6392acc4bc56b0e4708b11afdea02407 Author: Alexandr Plesovskih Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_gerritchangesource.py Log Message: ----------- Add new unit tests Commit: f882fd39b71acc3300ce4fc20b2183aa4ff9e898 https://github.com/buildbot/buildbot/commit/f882fd39b71acc3300ce4fc20b2183aa4ff9e898 Author: Alexandr Plesovskih Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_gerritchangesource.py Log Message: ----------- microfix: assertEqual >> failUnlessEqual Commit: dcd83949b795f2cec0576b7767ba8894a61570e7 https://github.com/buildbot/buildbot/commit/dcd83949b795f2cec0576b7767ba8894a61570e7 Author: Alexander Plesovskikh Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/docs/manual/cfg-changesources.rst Log Message: ----------- Update cfg-changesources.rst Commit: 8bf2d07c3edb42aca63b6a842016fe2a66dfe456 https://github.com/buildbot/buildbot/commit/8bf2d07c3edb42aca63b6a842016fe2a66dfe456 Author: Alexander Plesovskikh Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/docs/manual/cfg-changesources.rst Log Message: ----------- Update cfg-changesources.rst fix typo Commit: 668a3da326204f8e4cb1494f17974bad82614797 https://github.com/buildbot/buildbot/commit/668a3da326204f8e4cb1494f17974bad82614797 Author: Alexander Plesovskikh Date: 2013-12-01 (Sun, 01 Dec 2013) Changed paths: M master/docs/manual/cfg-changesources.rst Log Message: ----------- Update cfg-changesources.rst ssh passphrase this can be a problem Commit: e99a9a73423d41779a4052070a4c1015cd8b4364 https://github.com/buildbot/buildbot/commit/e99a9a73423d41779a4052070a4c1015cd8b4364 Author: Alexandr Plesovskih Date: 2013-12-02 (Mon, 02 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_gerritchangesource.py Log Message: ----------- Add new unit test. Testing custom handler. Commit: 513c14d2d107168316a5bd7edeaffb394ed9460b https://github.com/buildbot/buildbot/commit/513c14d2d107168316a5bd7edeaffb394ed9460b Author: Alexandr Plesovskih Date: 2013-12-02 (Mon, 02 Dec 2013) Changed paths: M master/docs/manual/cfg-changesources.rst Log Message: ----------- Merge branch 'master' of github.com:hgenru/buildbot Commit: 83470888b9c7dbddacea58998fd98fc75f9cb263 https://github.com/buildbot/buildbot/commit/83470888b9c7dbddacea58998fd98fc75f9cb263 Author: Steve Hoelzer Date: 2013-12-03 (Tue, 03 Dec 2013) Changed paths: M master/buildbot/steps/vstudio.py Log Message: ----------- Add build steps for VC12, VS2013, and MsBuild12 Commit: e6a9d413b6f084351c4c2fd07a3a40ff5c4f09b7 https://github.com/buildbot/buildbot/commit/e6a9d413b6f084351c4c2fd07a3a40ff5c4f09b7 Author: Marko Kohtala Date: 2013-12-05 (Thu, 05 Dec 2013) Changed paths: M master/docs/manual/cfg-statustargets.rst Log Message: ----------- Document poller hook POST request The WebStatus Poller hook documentation did not mention POST requests. POST allows use of cleaner curl -F option for poller parameter. Commit: 1836bbd4cc66f3ac73403f2cc8843feb8c5c4134 https://github.com/buildbot/buildbot/commit/1836bbd4cc66f3ac73403f2cc8843feb8c5c4134 Author: @damnwidget Date: 2013-12-05 (Thu, 05 Dec 2013) Changed paths: M master/buildbot/status/web/baseweb.py Log Message: ----------- when unicode strings are passed as change_hook_auth parameters for WebStatus hooks (when using JSON files as configuration for example), the __init__ method fails, just fix that Commit: 3804cdf0b5304dc9b4b7fd15fe4bec5dd9859bd4 https://github.com/buildbot/buildbot/commit/3804cdf0b5304dc9b4b7fd15fe4bec5dd9859bd4 Author: delanne Date: 2013-12-06 (Fri, 06 Dec 2013) Changed paths: M master/buildbot/status/status_push.py Log Message: ----------- Fix: unsubscribe StatusPush Commit: 7b23dff6d2bb9a8083a0bc755a2cd0867a0d4359 https://github.com/buildbot/buildbot/commit/7b23dff6d2bb9a8083a0bc755a2cd0867a0d4359 Author: Pierre Tardy Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/docs/manual/cfg-statustargets.rst Log Message: ----------- Merge pull request #994 from kohtala/master Document poller hook POST request Commit: b0a91ba7d363e099cee6aa2a9bb6b45250c68aa8 https://github.com/buildbot/buildbot/commit/b0a91ba7d363e099cee6aa2a9bb6b45250c68aa8 Author: Pierre Tardy Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/status/status_push.py Log Message: ----------- Merge pull request #997 from delanne/status_push_dont_unsubscribe Fix: unsubscribe StatusPush Commit: 3b528a2be5c5fca15b1e3d431cadc5cea1c9ad3e https://github.com/buildbot/buildbot/commit/3b528a2be5c5fca15b1e3d431cadc5cea1c9ad3e Author: Pierre Tardy Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/steps/vstudio.py Log Message: ----------- Merge pull request #992 from shoelzer/master Add build steps for VC12, VS2013, and MsBuild12 Commit: 35d07cd30750c6d12f688b2b19b37cd5cfc70acd https://github.com/buildbot/buildbot/commit/35d07cd30750c6d12f688b2b19b37cd5cfc70acd Author: @damnwidget Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/status/web/baseweb.py Log Message: ----------- using basestring as object to check for isinstance call on baseweb change_hook_auth Commit: 48c9dcb6eacd60fe5603b09179865c998c13208f https://github.com/buildbot/buildbot/commit/48c9dcb6eacd60fe5603b09179865c998c13208f Author: Pierre Tardy Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/status/web/baseweb.py Log Message: ----------- Merge pull request #996 from DamnWidget/#2605 [Fixes] For ticket #2605 Commit: bf5c148e7b427c1f685ce846696a90ed2dc24704 https://github.com/buildbot/buildbot/commit/bf5c148e7b427c1f685ce846696a90ed2dc24704 Author: Dustin J. Mitchell Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M CONTRIBUTING.md Log Message: ----------- Indicate that we don't use GitHub issues Commit: d4e772041d0784cea8a8ee3b4e497799f10a3532 https://github.com/buildbot/buildbot/commit/d4e772041d0784cea8a8ee3b4e497799f10a3532 Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: A master/buildbot/test/unit/test_status_slave.py Log Message: ----------- Tests: add new unit tests for SlaveStatus A few more tests in order to test Buildslave.status ... yes it's going away, but doenst hurt to have tests :) Commit: 221d949d96fb9d2e7120d6762ca74c641d127928 https://github.com/buildbot/buildbot/commit/221d949d96fb9d2e7120d6762ca74c641d127928 Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/status/slave.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_status_slave.py Log Message: ----------- Slave: add 'info' dictionary Make the 'info' dictionary more public and provide hooks to update it and set it Commit: 331eb300798ac37a53d0937116ff1021635e7466 https://github.com/buildbot/buildbot/commit/331eb300798ac37a53d0937116ff1021635e7466 Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/steps/master.py Log Message: ----------- SetSlaveInfo step to correspond to SetProperties Commit: 3bd12ed28568593f335f50699e5e975ddd3f64ce https://github.com/buildbot/buildbot/commit/3bd12ed28568593f335f50699e5e975ddd3f64ce Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/process/properties.py M master/buildbot/test/unit/test_process_properties.py Log Message: ----------- Interpolate("%(slave:XXXX)s") Commit: ffd92e2741de5630ce13023f29375ca858b7e281 https://github.com/buildbot/buildbot/commit/ffd92e2741de5630ce13023f29375ca858b7e281 Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst M master/docs/manual/cfg-properties.rst M master/docs/relnotes/index.rst Log Message: ----------- SlaveInfo: doc in progress Commit: fbda3d3a56ed319bb8c38c7b5457a7c7af4ad525 https://github.com/buildbot/buildbot/commit/fbda3d3a56ed319bb8c38c7b5457a7c7af4ad525 Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/test/unit/test_status_slave.py Log Message: ----------- Fix Travis issue: duplicate function. The other function seemed bogus and I think was a relic. Commit: ec2b1bc1015408132e8639442b4d68c1f51cc72e https://github.com/buildbot/buildbot/commit/ec2b1bc1015408132e8639442b4d68c1f51cc72e Author: Jared Grubb Date: 2013-12-08 (Sun, 08 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/status/slave.py M master/buildbot/steps/master.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_process_properties.py M master/buildbot/test/unit/test_status_slave.py Log Message: ----------- SlaveInfo: fix pep8 issues Commit: ade49a7b6175c3735ddf5bbe90992bc1684157a8 https://github.com/buildbot/buildbot/commit/ade49a7b6175c3735ddf5bbe90992bc1684157a8 Author: Aleksey Vasenev Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/changes/gitpoller.py Log Message: ----------- Fix split files with spaces Commit: 2c3b6eb7609df840f778c1ac5e0d872ee48e76eb https://github.com/buildbot/buildbot/commit/2c3b6eb7609df840f778c1ac5e0d872ee48e76eb Author: Aleksey Vasenev Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/changes/gitpoller.py Log Message: ----------- Decode comment and file path Commit: 5838173fa07c35aa1bb6c0ef7cba98632ed5dc19 https://github.com/buildbot/buildbot/commit/5838173fa07c35aa1bb6c0ef7cba98632ed5dc19 Author: Aleksey Vasenev Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_gitpoller.py Log Message: ----------- Tests now check file path with spaces and octal encoded Commit: 7c795835c18d7554cc4e01939f4cd99c9e38aac3 https://github.com/buildbot/buildbot/commit/7c795835c18d7554cc4e01939f4cd99c9e38aac3 Author: Steve Hoelzer Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/steps/vstudio.py Log Message: ----------- Rename MsBuild to MsBuild4 to specify version number Also add MsBuild alias for backward compatibility Commit: a004abf33d600a02642a36603351e0ffd9060a11 https://github.com/buildbot/buildbot/commit/a004abf33d600a02642a36603351e0ffd9060a11 Author: Steve Hoelzer Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/steps/vstudio.py Log Message: ----------- Simplify MsBuild12 by factoring out path to vcvarsall.bat Commit: 1c5973413aa3b7e5f2f197b488cd58206b7ac057 https://github.com/buildbot/buildbot/commit/1c5973413aa3b7e5f2f197b488cd58206b7ac057 Author: Dustin J. Mitchell Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/process/properties.py M master/buildbot/status/slave.py M master/buildbot/steps/master.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_process_properties.py A master/buildbot/test/unit/test_status_slave.py M master/docs/manual/cfg-buildsteps.rst M master/docs/manual/cfg-properties.rst M master/docs/relnotes/index.rst Log Message: ----------- Merge branch 'SlaveInfo' of git://github.com/jaredgrubb/buildbot +autopep8 Commit: 98fdcbbd0136b6334fad9b8ed3133ef41a343bef https://github.com/buildbot/buildbot/commit/98fdcbbd0136b6334fad9b8ed3133ef41a343bef Author: Jeremy Cornett Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/changes/gitpoller.py Log Message: ----------- Make GitPoller break filenames on newlines List of changed files was incorrectly splitting on spaces, instead of just newlines. That was breaking a single file's path into multiple lines instead of displaying it one just one. Commit: 3cfda4a55d974d4c08e79aadd983629b77c5d7f6 https://github.com/buildbot/buildbot/commit/3cfda4a55d974d4c08e79aadd983629b77c5d7f6 Author: Spike^ekipS Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_gitpoller.py Log Message: ----------- fixed_gitpoller_changes_with_space.patch Commit: 4450ae355a2134dc4ad31a9311db812fde9d2c64 https://github.com/buildbot/buildbot/commit/4450ae355a2134dc4ad31a9311db812fde9d2c64 Author: Dustin J. Mitchell Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/changes/gitpoller.py M master/buildbot/test/unit/test_changes_gitpoller.py Log Message: ----------- Merge branch 'bug2529' +autopep8 Commit: 3c38bd33b8f31e5c7e33a929fd9fe640c9cb05de https://github.com/buildbot/buildbot/commit/3c38bd33b8f31e5c7e33a929fd9fe640c9cb05de Author: Dustin J. Mitchell Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/changes/gitpoller.py M master/buildbot/test/unit/test_changes_gitpoller.py Log Message: ----------- Merge branch 'git_improvements' of git://github.com/Ratio2/buildbot +autopep8 Commit: cdc85287c02c8ab1d69c3bb48e2444d065eee2bc https://github.com/buildbot/buildbot/commit/cdc85287c02c8ab1d69c3bb48e2444d065eee2bc Author: Dustin J. Mitchell Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/buildbot/steps/vstudio.py Log Message: ----------- Merge branch 'master' of git://github.com/shoelzer/buildbot Commit: 0f9ac746685a06580fd73a31bef6616304fb540b https://github.com/buildbot/buildbot/commit/0f9ac746685a06580fd73a31bef6616304fb540b Author: Alexander Plesovskikh Date: 2013-12-09 (Mon, 09 Dec 2013) Changed paths: M master/docs/manual/cfg-changesources.rst Log Message: ----------- Add example Commit: 2b3762d36e80e5c4075390b22781d0fa89211563 https://github.com/buildbot/buildbot/commit/2b3762d36e80e5c4075390b22781d0fa89211563 Author: Aleksey Vasenev Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M master/buildbot/process/users/manual.py Log Message: ----------- Fix use of uninitialized variable Commit: 5614e7c9cbefd90db6a28994bcee17b759c7d459 https://github.com/buildbot/buildbot/commit/5614e7c9cbefd90db6a28994bcee17b759c7d459 Author: Dustin J. Mitchell Date: 2013-12-10 (Tue, 10 Dec 2013) Changed paths: M master/buildbot/process/users/manual.py Log Message: ----------- Merge branch 'fix_use_of_uninitialized_variable' of git://github.com/Ratio2/buildbot Commit: f1090bdebfa9cd3a214ce1c7edf1585454678869 https://github.com/buildbot/buildbot/commit/f1090bdebfa9cd3a214ce1c7edf1585454678869 Author: Steve Hoelzer Date: 2013-12-13 (Fri, 13 Dec 2013) Changed paths: M master/buildbot/changes/hgpoller.py M master/buildbot/test/unit/test_changes_hgpoller.py Log Message: ----------- Make HgPoller break file paths correctly The command to get revision info lists all files on one line and was splitting on spaces to get file paths. Sometimes paths have spaces so that doesn't work. Instead, insert a pathsep character between paths and use that for splitting. This fixes http://trac.buildbot.net/ticket/2595 Commit: 09497079ae8753cfd87592ee63d06ee4232169f5 https://github.com/buildbot/buildbot/commit/09497079ae8753cfd87592ee63d06ee4232169f5 Author: Dustin J. Mitchell Date: 2013-12-14 (Sat, 14 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py M master/buildbot/test/unit/test_changes_gerritchangesource.py M master/docs/manual/cfg-changesources.rst Log Message: ----------- Merge branch 'master' of git://github.com/hgenru/buildbot +autopep8 Commit: 2bbee4fb6c8df05bf9f4544852714157edd5056c https://github.com/buildbot/buildbot/commit/2bbee4fb6c8df05bf9f4544852714157edd5056c Author: Dustin J. Mitchell Date: 2013-12-14 (Sat, 14 Dec 2013) Changed paths: M master/buildbot/changes/hgpoller.py M master/buildbot/test/unit/test_changes_hgpoller.py M master/docs/relnotes/index.rst Log Message: ----------- Merge branch 'master' of git://github.com/shoelzer/buildbot Commit: d486f4b637fb34dbac3548d3fbf5b15562ff7346 https://github.com/buildbot/buildbot/commit/d486f4b637fb34dbac3548d3fbf5b15562ff7346 Author: Steve Hoelzer Date: 2013-12-16 (Mon, 16 Dec 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Update build step docs for Visual Studio and MSBuild Commit: e8255b8b3aca76c876afe4e1a58006cee9c1c00f https://github.com/buildbot/buildbot/commit/e8255b8b3aca76c876afe4e1a58006cee9c1c00f Author: delanne Date: 2013-12-17 (Tue, 17 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/status/base.py M master/buildbot/status/master.py M master/buildbot/status/slave.py M master/buildbot/status/status_push.py Log Message: ----------- Add 2 slave events: - SlavePaused - SlaveUnpaused Commit: 936c91c457a3c4800d84a0a28114a8b7c988fb0d https://github.com/buildbot/buildbot/commit/936c91c457a3c4800d84a0a28114a8b7c988fb0d Author: delanne Date: 2013-12-17 (Tue, 17 Dec 2013) Changed paths: M master/buildbot/status/status_push.py Log Message: ----------- Only send the slavename for the slavePaused event Commit: 2046f59ac790e0ad20872de102be45a778ef7313 https://github.com/buildbot/buildbot/commit/2046f59ac790e0ad20872de102be45a778ef7313 Author: Dustin J. Mitchell Date: 2013-12-17 (Tue, 17 Dec 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Merge branch 'master' of git://github.com/shoelzer/buildbot Commit: d3a59a0037e4385d14d71ecc8d98ec1b5a46504a https://github.com/buildbot/buildbot/commit/d3a59a0037e4385d14d71ecc8d98ec1b5a46504a Author: Dustin J. Mitchell Date: 2013-12-17 (Tue, 17 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/status/base.py M master/buildbot/status/master.py M master/buildbot/status/slave.py M master/buildbot/status/status_push.py Log Message: ----------- Merge branch 'slave_pause_event' of git://github.com/delanne/buildbot Commit: 67e1da24f37b5bc73c8ed53ce56553cbc506a2cc https://github.com/buildbot/buildbot/commit/67e1da24f37b5bc73c8ed53ce56553cbc506a2cc Author: Steve Hoelzer Date: 2013-12-19 (Thu, 19 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_hgpoller.py Log Message: ----------- Test that HgPoller can handle paths with spaces Commit: 974c04eee69c98247ddc82c575405f6ec5ce5ee8 https://github.com/buildbot/buildbot/commit/974c04eee69c98247ddc82c575405f6ec5ce5ee8 Author: Dustin J. Mitchell Date: 2013-12-19 (Thu, 19 Dec 2013) Changed paths: M master/buildbot/test/unit/test_changes_hgpoller.py Log Message: ----------- Merge branch 'master' of git://github.com/shoelzer/buildbot Commit: 538734808dfc2f896affb0737bcd679791608c1a https://github.com/buildbot/buildbot/commit/538734808dfc2f896affb0737bcd679791608c1a Author: Dustin J. Mitchell Date: 2013-12-20 (Fri, 20 Dec 2013) Changed paths: M master/buildbot/steps/source/base.py M master/docs/relnotes/index.rst Log Message: ----------- Render 'env' for source steps Fixes #2610. Commit: d666b998e765f308775b21088766df8f24314cf3 https://github.com/buildbot/buildbot/commit/d666b998e765f308775b21088766df8f24314cf3 Author: David Keller Date: 2013-12-21 (Sat, 21 Dec 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Correct documentation typo regarding MsBuild import. Commit: e0cea86342ec7923f3221f6e3810550afd74393c https://github.com/buildbot/buildbot/commit/e0cea86342ec7923f3221f6e3810550afd74393c Author: Dustin J. Mitchell Date: 2013-12-21 (Sat, 21 Dec 2013) Changed paths: M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Merge branch 'master' of git://github.com/DavidKeller/buildbot Commit: affab71e17e3e3e38bb2d802c29301cebfb707e4 https://github.com/buildbot/buildbot/commit/affab71e17e3e3e38bb2d802c29301cebfb707e4 Author: Aleksey Vasenev Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/status/web/build.py Log Message: ----------- Fix decode comments Commit: 101f63d4e82ae50e18f53a135a678f53d44bcc77 https://github.com/buildbot/buildbot/commit/101f63d4e82ae50e18f53a135a678f53d44bcc77 Author: Aleksey Vasenev Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/steps/source/base.py M master/buildbot/steps/transfer.py M master/buildbot/test/unit/test_schedulers_timed_NightlyBase.py M master/buildbot/test/unit/test_steps_source_repo.py M master/buildbot/test/util/sourcesteps.py Log Message: ----------- Fix tests Commit: 0c333505972939fdd5456e67de1c3fa91ea75450 https://github.com/buildbot/buildbot/commit/0c333505972939fdd5456e67de1c3fa91ea75450 Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/status/web/build.py M master/buildbot/steps/source/base.py M master/buildbot/steps/transfer.py M master/buildbot/test/unit/test_schedulers_timed_NightlyBase.py M master/buildbot/test/unit/test_steps_source_repo.py M master/buildbot/test/util/sourcesteps.py Log Message: ----------- Merge branch 'fix_comments_decode' of git://github.com/Ratio2/buildbot Commit: f518276b3a6e88a6b079a4e2661a152087eedd15 https://github.com/buildbot/buildbot/commit/f518276b3a6e88a6b079a4e2661a152087eedd15 Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/process/properties.py M master/buildbot/status/slave.py M master/buildbot/steps/master.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_buildslave_base.py M master/buildbot/test/unit/test_process_properties.py R master/buildbot/test/unit/test_status_slave.py M master/docs/manual/cfg-buildsteps.rst M master/docs/manual/cfg-properties.rst M master/docs/relnotes/index.rst Log Message: ----------- Revert "Merge branch 'SlaveInfo' of git://github.com/jaredgrubb/buildbot" This reverts commit 1c5973413aa3b7e5f2f197b488cd58206b7ac057, reversing changes made to bf5c148e7b427c1f685ce846696a90ed2dc24704. See https://github.com/buildbot/buildbot/pull/880 for details on why this was reverted. Conflicts: master/buildbot/status/slave.py master/docs/relnotes/index.rst Commit: eac093f4bf7004095e4faf38b76a0f68b4815a89 https://github.com/buildbot/buildbot/commit/eac093f4bf7004095e4faf38b76a0f68b4815a89 Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M CONTRIBUTING.md M common/validate.sh M master/buildbot/buildslave/base.py M master/buildbot/changes/gerritchangesource.py M master/buildbot/changes/gitpoller.py R master/buildbot/changes/hgbuildbot.py M master/buildbot/changes/hgpoller.py M master/buildbot/process/users/manual.py M master/buildbot/status/base.py M master/buildbot/status/master.py M master/buildbot/status/slave.py M master/buildbot/status/status_push.py M master/buildbot/steps/source/base.py M master/buildbot/steps/transfer.py M master/buildbot/steps/vstudio.py M master/buildbot/test/test_extra_coverage.py M master/buildbot/test/unit/test_changes_gerritchangesource.py M master/buildbot/test/unit/test_changes_gitpoller.py M master/buildbot/test/unit/test_changes_hgpoller.py M master/buildbot/test/unit/test_schedulers_timed_NightlyBase.py M master/buildbot/test/unit/test_steps_source_repo.py M master/buildbot/test/unit/test_steps_transfer.py M master/buildbot/test/util/sourcesteps.py A master/contrib/hgbuildbot.py M master/docs/manual/cfg-buildsteps.rst M master/docs/manual/cfg-changesources.rst M master/docs/manual/cfg-statustargets.rst M master/docs/relnotes/0.8.6.rst M master/docs/relnotes/index.rst Log Message: ----------- Merge branch 'master' into nine Conflicts: master/buildbot/buildslave/base.py master/buildbot/changes/gerritchangesource.py master/buildbot/changes/gitpoller.py master/buildbot/process/buildstep.py master/buildbot/process/logobserver.py master/buildbot/process/remotecommand.py master/buildbot/status/master.py master/buildbot/status/web/baseweb.py master/buildbot/status/web/build.py master/buildbot/steps/source/base.py master/buildbot/test/unit/test_changes_gerritchangesource.py master/buildbot/test/unit/test_changes_hgpoller.py master/docs/relnotes/index.rst Compare: https://github.com/buildbot/buildbot/compare/c0555f74e771...eac093f4bf70 From noreply at github.com Tue Dec 24 05:26:41 2013 From: noreply at github.com (GitHub) Date: Mon, 23 Dec 2013 21:26:41 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 303a23: rename db.rst to database.rst to correspond with m... Message-ID: <52b91b11b9b5a_3511997d48698eb@hookshot-fe4-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 303a23dee8616c65a793d7712bafbd6c8036e47a https://github.com/buildbot/buildbot/commit/303a23dee8616c65a793d7712bafbd6c8036e47a Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/docs/developer/apis.rst A master/docs/developer/database.rst R master/docs/developer/db.rst M master/docs/developer/mq.rst Log Message: ----------- rename db.rst to database.rst to correspond with master branch From noreply at github.com Wed Dec 25 03:51:02 2013 From: noreply at github.com (GitHub) Date: Tue, 24 Dec 2013 19:51:02 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 202a18: restore 'gerritchangesource: use gerrit's changeid... Message-ID: <52ba562647d05_3278100bd50444ab@hookshot-fe4-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 202a18a380b0271b993d8694022009bb50b9cc30 https://github.com/buildbot/buildbot/commit/202a18a380b0271b993d8694022009bb50b9cc30 Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py M master/buildbot/test/unit/test_changes_gerritchangesource.py Log Message: ----------- restore 'gerritchangesource: use gerrit's changeid as the branch' (ccf6c117) Commit: fc89020702ac7b538111507ca9442cc7d9b875c3 https://github.com/buildbot/buildbot/commit/fc89020702ac7b538111507ca9442cc7d9b875c3 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py M master/buildbot/test/unit/test_changes_gerritchangesource.py Log Message: ----------- Merge branch 'restore-gerrit-changeid-in-branch' of git://github.com/djmitche/buildbot (PR #1024) Compare: https://github.com/buildbot/buildbot/compare/f518276b3a6e...fc89020702ac From noreply at github.com Wed Dec 25 04:40:33 2013 From: noreply at github.com (GitHub) Date: Tue, 24 Dec 2013 20:40:33 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 202a18: restore 'gerritchangesource: use gerrit's changeid... Message-ID: <52ba61c15c4e5_7a171229d58335c1@hookshot-fe6-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 202a18a380b0271b993d8694022009bb50b9cc30 https://github.com/buildbot/buildbot/commit/202a18a380b0271b993d8694022009bb50b9cc30 Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py M master/buildbot/test/unit/test_changes_gerritchangesource.py Log Message: ----------- restore 'gerritchangesource: use gerrit's changeid as the branch' (ccf6c117) Commit: 0931c09084ed00ca5949c067c2d18428f44342d0 https://github.com/buildbot/buildbot/commit/0931c09084ed00ca5949c067c2d18428f44342d0 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/test/unit/test_util.py M master/buildbot/util/__init__.py M master/docs/developer/utils.rst Log Message: ----------- add buildbot.util.asyncSleep Commit: f12562ba610f8bb89853ed53e0ae7f0a7868efc1 https://github.com/buildbot/buildbot/commit/f12562ba610f8bb89853ed53e0ae7f0a7868efc1 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/clients/tryclient.py M master/buildbot/db/model.py M master/buildbot/schedulers/trysched.py M master/buildbot/status/client.py A master/buildbot/test/integration/test_try_client.py Log Message: ----------- Add an integration test for try scheduler client/server interactions. This runs a full master with real builds. Waiting for SSH builds does not work - the buildmaster returns buildset ID's, while the client expects its external_idstring, so it waits forever. This functionality will be difficult to support as-is in nine, so it's been removed. Commit: fc89020702ac7b538111507ca9442cc7d9b875c3 https://github.com/buildbot/buildbot/commit/fc89020702ac7b538111507ca9442cc7d9b875c3 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py M master/buildbot/test/unit/test_changes_gerritchangesource.py Log Message: ----------- Merge branch 'restore-gerrit-changeid-in-branch' of git://github.com/djmitche/buildbot (PR #1024) Commit: 9d835e392b62c48335e72b32476ee9276a415789 https://github.com/buildbot/buildbot/commit/9d835e392b62c48335e72b32476ee9276a415789 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/clients/tryclient.py M master/buildbot/db/model.py M master/buildbot/schedulers/trysched.py M master/buildbot/status/client.py A master/buildbot/test/integration/test_try_client.py M master/buildbot/test/unit/test_util.py M master/buildbot/util/__init__.py M master/docs/developer/utils.rst Log Message: ----------- Merge remote-tracking branch 'origin/8/try-integration-test' (PR #1026) +autopep8 Commit: c8710ecbc42bacea92fa9c9171b114f297656f17 https://github.com/buildbot/buildbot/commit/c8710ecbc42bacea92fa9c9171b114f297656f17 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/changes/gerritchangesource.py M master/buildbot/clients/tryclient.py M master/buildbot/db/model.py M master/buildbot/schedulers/trysched.py M master/buildbot/status/client.py A master/buildbot/test/integration/test_try_client.py M master/buildbot/test/unit/test_changes_gerritchangesource.py M master/buildbot/test/unit/test_util.py M master/buildbot/util/__init__.py M master/docs/developer/utils.rst Log Message: ----------- Merge branch 'master' into nine Conflicts: master/buildbot/clients/tryclient.py master/buildbot/schedulers/trysched.py master/buildbot/test/unit/test_util.py master/buildbot/util/__init__.py Commit: 48a1dbc97341f83b5f93d747127dd6ce00af9564 https://github.com/buildbot/buildbot/commit/48a1dbc97341f83b5f93d747127dd6ce00af9564 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/status/buildrequest.py Log Message: ----------- fix use of nonexistent getBuildsForRequest Commit: 25ae2d7e0ddac642e84a8ca9ea823710f677e7a8 https://github.com/buildbot/buildbot/commit/25ae2d7e0ddac642e84a8ca9ea823710f677e7a8 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/schedulers/trysched.py M master/buildbot/test/integration/test_try_client.py M master/buildbot/test/unit/test_schedulers_trysched.py Log Message: ----------- Minor fixes to try scheduler and its integration tests Compare: https://github.com/buildbot/buildbot/compare/303a23dee861...25ae2d7e0dda From noreply at github.com Wed Dec 25 04:40:33 2013 From: noreply at github.com (GitHub) Date: Tue, 24 Dec 2013 20:40:33 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 0931c0: add buildbot.util.asyncSleep Message-ID: <52ba61c12e6cb_30821279d58800aa@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 0931c09084ed00ca5949c067c2d18428f44342d0 https://github.com/buildbot/buildbot/commit/0931c09084ed00ca5949c067c2d18428f44342d0 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/test/unit/test_util.py M master/buildbot/util/__init__.py M master/docs/developer/utils.rst Log Message: ----------- add buildbot.util.asyncSleep Commit: f12562ba610f8bb89853ed53e0ae7f0a7868efc1 https://github.com/buildbot/buildbot/commit/f12562ba610f8bb89853ed53e0ae7f0a7868efc1 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/clients/tryclient.py M master/buildbot/db/model.py M master/buildbot/schedulers/trysched.py M master/buildbot/status/client.py A master/buildbot/test/integration/test_try_client.py Log Message: ----------- Add an integration test for try scheduler client/server interactions. This runs a full master with real builds. Waiting for SSH builds does not work - the buildmaster returns buildset ID's, while the client expects its external_idstring, so it waits forever. This functionality will be difficult to support as-is in nine, so it's been removed. Commit: 9d835e392b62c48335e72b32476ee9276a415789 https://github.com/buildbot/buildbot/commit/9d835e392b62c48335e72b32476ee9276a415789 Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/buildbot/clients/tryclient.py M master/buildbot/db/model.py M master/buildbot/schedulers/trysched.py M master/buildbot/status/client.py A master/buildbot/test/integration/test_try_client.py M master/buildbot/test/unit/test_util.py M master/buildbot/util/__init__.py M master/docs/developer/utils.rst Log Message: ----------- Merge remote-tracking branch 'origin/8/try-integration-test' (PR #1026) +autopep8 Compare: https://github.com/buildbot/buildbot/compare/fc89020702ac...9d835e392b62 From noreply at github.com Wed Dec 25 15:08:42 2013 From: noreply at github.com (GitHub) Date: Wed, 25 Dec 2013 07:08:42 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 98dad5: skip test_try_client integration tests if buildbot... Message-ID: <52baf4fa1763d_5af9e33d48823bd@hookshot-fe5-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 98dad583c5d498d3dbb3b106145f0ed4afefcee4 https://github.com/buildbot/buildbot/commit/98dad583c5d498d3dbb3b106145f0ed4afefcee4 Author: Dustin J. Mitchell Date: 2013-12-25 (Wed, 25 Dec 2013) Changed paths: M master/buildbot/test/integration/test_try_client.py Log Message: ----------- skip test_try_client integration tests if buildbot-www isn't installed From noreply at github.com Thu Dec 26 15:37:01 2013 From: noreply at github.com (GitHub) Date: Thu, 26 Dec 2013 07:37:01 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 99eeea: add build.buildid, sl.buildslaveid, and st.stepid Message-ID: <52bc4d1d91198_1620ac9d4c40851@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 99eeea0a9ae8414fbcf564f5af286c4f67848472 https://github.com/buildbot/buildbot/commit/99eeea0a9ae8414fbcf564f5af286c4f67848472 Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/process/build.py M master/buildbot/process/builder.py M master/buildbot/process/buildstep.py M master/buildbot/process/remotecommand.py M master/buildbot/steps/source/base.py M master/buildbot/test/fake/fakebuild.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/fake/slave.py M master/buildbot/test/integration/test_custom_buildstep.py M master/buildbot/test/unit/test_data_steps.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_steps_source_base_Source.py M master/buildbot/test/unit/test_steps_source_repo.py M master/buildbot/test/util/steps.py M master/docs/developer/classes.rst M master/docs/developer/cls-build.rst A master/docs/developer/cls-buildslave.rst M master/docs/developer/cls-buildsteps.rst Log Message: ----------- add build.buildid, sl.buildslaveid, and st.stepid This required a lot of refactoring of old tests. It also required changing the automatic generation of source step names to generate proper identifiers. Commit: d8868cef9b33bf2a62fd290462dc457da3c7d578 https://github.com/buildbot/buildbot/commit/d8868cef9b33bf2a62fd290462dc457da3c7d578 Author: Dustin J. Mitchell Date: 2013-12-26 (Thu, 26 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/process/build.py M master/buildbot/process/builder.py M master/buildbot/process/buildstep.py M master/buildbot/process/remotecommand.py M master/buildbot/steps/source/base.py M master/buildbot/test/fake/fakebuild.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/fake/slave.py M master/buildbot/test/integration/test_custom_buildstep.py M master/buildbot/test/unit/test_data_steps.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_steps_source_base_Source.py M master/buildbot/test/unit/test_steps_source_repo.py M master/buildbot/test/util/steps.py M master/docs/developer/classes.rst M master/docs/developer/cls-build.rst A master/docs/developer/cls-buildslave.rst M master/docs/developer/cls-buildsteps.rst Log Message: ----------- Merge branch '9/buildid-stepid-buildslaveid' of git://github.com/djmitche/buildbot into nine (PR #1018) I re-addd status.build_started so that the try scheduler tests would still work. Commit: 612b0ab9c52549e2889b0f3404e6ef4b72d8d717 https://github.com/buildbot/buildbot/commit/612b0ab9c52549e2889b0f3404e6ef4b72d8d717 Author: Dustin J. Mitchell Date: 2013-12-26 (Thu, 26 Dec 2013) Changed paths: M README.md Log Message: ----------- All resource types are now implemented, including buildrequests Compare: https://github.com/buildbot/buildbot/compare/98dad583c5d4...612b0ab9c525 From noreply at github.com Thu Dec 26 20:04:46 2013 From: noreply at github.com (GitHub) Date: Thu, 26 Dec 2013 12:04:46 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 158e30: clean up changes to try scheduler Message-ID: <52bc8bde183e1_ae813f1d483946b@hookshot-fe5-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 158e3059b113fea4ce7c81376c2a237f5c7cd496 https://github.com/buildbot/buildbot/commit/158e3059b113fea4ce7c81376c2a237f5c7cd496 Author: Dustin J. Mitchell Date: 2013-12-26 (Thu, 26 Dec 2013) Changed paths: M master/buildbot/clients/tryclient.py M master/docs/manual/cmdline.rst M master/docs/relnotes/index.rst Log Message: ----------- clean up changes to try scheduler Commit: 4611405cb244c7213f584a516ece897fa663b3da https://github.com/buildbot/buildbot/commit/4611405cb244c7213f584a516ece897fa663b3da Author: Dustin J. Mitchell Date: 2013-12-26 (Thu, 26 Dec 2013) Changed paths: M master/buildbot/clients/tryclient.py M master/docs/manual/cmdline.rst M master/docs/relnotes/index.rst Log Message: ----------- Merge branch '8/trysched-cleanup' of git://github.com/djmitche/buildbot (PR #1027) Compare: https://github.com/buildbot/buildbot/compare/9d835e392b62...4611405cb244 From noreply at github.com Fri Dec 27 23:56:59 2013 From: noreply at github.com (GitHub) Date: Fri, 27 Dec 2013 15:56:59 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] cc9af6: Add more utility functions for identifiers Message-ID: <52be13cbd8ab8_4214f91d484862f@hookshot-fe4-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: cc9af69867e5a088fd9e4ebf6b6dde097b7fe764 https://github.com/buildbot/buildbot/commit/cc9af69867e5a088fd9e4ebf6b6dde097b7fe764 Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/db/buildslaves.py A master/buildbot/test/unit/test_util_identifiers.py R master/buildbot/test/unit/test_util_typechecks.py A master/buildbot/util/identifiers.py R master/buildbot/util/typechecks.py M master/docs/developer/db.rst M master/docs/developer/utils.rst Log Message: ----------- Add more utility functions for identifiers Commit: f776e1a02a1ac7d333d8e9474fd8a22d6ab281ad https://github.com/buildbot/buildbot/commit/f776e1a02a1ac7d333d8e9474fd8a22d6ab281ad Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/data/logchunks.py M master/buildbot/data/logs.py M master/buildbot/db/logs.py A master/buildbot/db/migrate/versions/034_log_slug.py M master/buildbot/db/model.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_data_logchunks.py M master/buildbot/test/unit/test_data_logs.py M master/buildbot/test/unit/test_db_logs.py A master/buildbot/test/unit/test_db_migrate_versions_034_log_slug.py M master/buildbot/test/unit/test_util_identifiers.py M master/buildbot/test/util/validation.py M master/buildbot/util/identifiers.py M master/docs/developer/db.rst M master/docs/developer/rtype-log.rst M master/docs/developer/rtype-logchunk.rst Log Message: ----------- Add a 'slug' to logs, so that names can be non-identifiers The 'newLog' update method takes care of generating a unique slug. Commit: 5b05ef0f152a0e8dbdb33db506f1214cfc97b7a1 https://github.com/buildbot/buildbot/commit/5b05ef0f152a0e8dbdb33db506f1214cfc97b7a1 Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/buildslave/base.py M master/buildbot/process/build.py M master/buildbot/process/builder.py M master/buildbot/process/buildstep.py M master/buildbot/process/remotecommand.py M master/buildbot/steps/source/base.py M master/buildbot/test/fake/fakebuild.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/fake/slave.py M master/buildbot/test/integration/test_custom_buildstep.py M master/buildbot/test/unit/test_data_steps.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_steps_source_base_Source.py M master/buildbot/test/unit/test_steps_source_repo.py M master/buildbot/test/util/steps.py M master/docs/developer/classes.rst M master/docs/developer/cls-build.rst A master/docs/developer/cls-buildslave.rst M master/docs/developer/cls-buildsteps.rst Log Message: ----------- add build.buildid, sl.buildslaveid, and st.stepid This required a lot of refactoring of old tests. It also required changing the automatic generation of source step names to generate proper identifiers. Commit: fb3a0f57100b0e8399ba09ff915531923496117e https://github.com/buildbot/buildbot/commit/fb3a0f57100b0e8399ba09ff915531923496117e Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/test/fake/fakedata.py Log Message: ----------- fix validation Commit: e2ed5c85592320b5f4c32d02d17ade02cb51b98c https://github.com/buildbot/buildbot/commit/e2ed5c85592320b5f4c32d02d17ade02cb51b98c Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/process/build.py M master/buildbot/process/buildstep.py Log Message: ----------- set build status to 'finished' when finished Commit: c9a5eef2a5bd9e95f325ea434f34076b6f104a8c https://github.com/buildbot/buildbot/commit/c9a5eef2a5bd9e95f325ea434f34076b6f104a8c Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M README.md M master/buildbot/data/steps.py M master/buildbot/process/buildstep.py M master/buildbot/process/log.py M master/buildbot/process/logobserver.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/fake/logfile.py M master/buildbot/test/integration/test_custom_buildstep.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_process_log.py A master/buildbot/test/unit/test_process_logobserver.py M master/docs/developer/classes.rst A master/docs/developer/cls-logobserver.rst M master/docs/manual/customization.rst M master/docs/relnotes/index.rst Log Message: ----------- Use the process Log instance, rather than status * change log.subscribe's signature to pass a callback that's called with different args; change LogObserver to correspond * decode bytestrings to unicode as they are added to logs, using a default function * step.addLog and friends return a process.log.Log instance Commit: 4e19d23f1bd73ee4950cc25609aae6ef39f0ecfe https://github.com/buildbot/buildbot/commit/4e19d23f1bd73ee4950cc25609aae6ef39f0ecfe Author: Dustin J. Mitchell Date: 2013-12-23 (Mon, 23 Dec 2013) Changed paths: M master/buildbot/config.py M master/buildbot/process/buildstep.py M master/buildbot/process/log.py M master/buildbot/test/integration/test_custom_buildstep.py M master/buildbot/test/unit/test_config.py M master/buildbot/test/unit/test_process_buildstep.py M master/buildbot/test/unit/test_process_log.py M master/buildbot/test/unit/test_process_logobserver.py M master/buildbot/test/util/steps.py M master/docs/developer/cls-buildsteps.rst M master/docs/developer/cls-log.rst M master/docs/manual/cfg-buildsteps.rst M master/docs/manual/cfg-global.rst M master/docs/relnotes/index.rst Log Message: ----------- Add logEncoding config Commit: 4b61e1aa3847c52967e0f6dc21dd47f61718c6b0 https://github.com/buildbot/buildbot/commit/4b61e1aa3847c52967e0f6dc21dd47f61718c6b0 Author: Dustin J. Mitchell Date: 2013-12-27 (Fri, 27 Dec 2013) Changed paths: M README.md M master/buildbot/config.py M master/buildbot/data/logchunks.py M master/buildbot/data/logs.py M master/buildbot/data/steps.py M master/buildbot/db/buildslaves.py M master/buildbot/db/logs.py A master/buildbot/db/migrate/versions/034_log_slug.py M master/buildbot/db/model.py M master/buildbot/process/build.py M master/buildbot/process/buildstep.py M master/buildbot/process/log.py M master/buildbot/process/logobserver.py M master/buildbot/test/fake/fakedata.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/fake/logfile.py M master/buildbot/test/integration/test_custom_buildstep.py M master/buildbot/test/unit/test_config.py M master/buildbot/test/unit/test_data_logchunks.py M master/buildbot/test/unit/test_data_logs.py M master/buildbot/test/unit/test_db_logs.py A master/buildbot/test/unit/test_db_migrate_versions_034_log_slug.py M master/buildbot/test/unit/test_process_build.py M master/buildbot/test/unit/test_process_buildstep.py M master/buildbot/test/unit/test_process_log.py A master/buildbot/test/unit/test_process_logobserver.py A master/buildbot/test/unit/test_util_identifiers.py R master/buildbot/test/unit/test_util_typechecks.py M master/buildbot/test/util/steps.py M master/buildbot/test/util/validation.py A master/buildbot/util/identifiers.py R master/buildbot/util/typechecks.py M master/docs/developer/classes.rst M master/docs/developer/cls-buildsteps.rst M master/docs/developer/cls-log.rst A master/docs/developer/cls-logobserver.rst M master/docs/developer/database.rst M master/docs/developer/rtype-log.rst M master/docs/developer/rtype-logchunk.rst M master/docs/developer/utils.rst M master/docs/manual/cfg-buildsteps.rst M master/docs/manual/cfg-global.rst M master/docs/manual/customization.rst M master/docs/relnotes/index.rst Log Message: ----------- Merge branch '9/use-data-api-1' of git://github.com/djmitche/buildbot into nine (PR #1023) Conflicts: master/buildbot/process/build.py master/buildbot/process/builder.py +autopep8, docs fixes, etc. Compare: https://github.com/buildbot/buildbot/compare/612b0ab9c525...4b61e1aa3847 From noreply at github.com Sat Dec 28 00:05:03 2013 From: noreply at github.com (GitHub) Date: Fri, 27 Dec 2013 16:05:03 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 095392: Add more utility functions for identifiers Message-ID: <52be15af843a3_45fa6bbd543536f@hookshot-fe3-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 095392002c6888d78a59ca1739c30bbcccf65565 https://github.com/buildbot/buildbot/commit/095392002c6888d78a59ca1739c30bbcccf65565 Author: Dustin J. Mitchell Date: 2013-12-22 (Sun, 22 Dec 2013) Changed paths: M master/buildbot/db/buildslaves.py A master/buildbot/test/unit/test_util_identifiers.py R master/buildbot/test/unit/test_util_typechecks.py A master/buildbot/util/identifiers.py R master/buildbot/util/typechecks.py M master/docs/developer/db.rst M master/docs/developer/utils.rst Log Message: ----------- Add more utility functions for identifiers Commit: 9729782fc4b37168825aa5b57706af673c19ec4e https://github.com/buildbot/buildbot/commit/9729782fc4b37168825aa5b57706af673c19ec4e Author: Dustin J. Mitchell Date: 2013-12-22 (Sun, 22 Dec 2013) Changed paths: M master/buildbot/data/logchunks.py M master/buildbot/data/logs.py M master/buildbot/db/logs.py A master/buildbot/db/migrate/versions/034_log_slug.py M master/buildbot/db/model.py M master/buildbot/test/fake/fakedb.py M master/buildbot/test/unit/test_data_logchunks.py M master/buildbot/test/unit/test_data_logs.py M master/buildbot/test/unit/test_db_logs.py A master/buildbot/test/unit/test_db_migrate_versions_034_log_slug.py M master/buildbot/test/unit/test_util_identifiers.py M master/buildbot/test/util/validation.py M master/buildbot/util/identifiers.py M master/docs/developer/db.rst M master/docs/developer/rtype-log.rst M master/docs/developer/rtype-logchunk.rst Log Message: ----------- Add a 'slug' to logs, so that names can be non-identifiers The 'newLog' update method takes care of generating a unique slug. Commit: 1b64f49001580674e4ae9a4bb2025407cfae1b03 https://github.com/buildbot/buildbot/commit/1b64f49001580674e4ae9a4bb2025407cfae1b03 Author: Dustin J. Mitchell Date: 2013-12-22 (Sun, 22 Dec 2013) Changed paths: M master/buildbot/test/fake/fakedata.py Log Message: ----------- fix validation Commit: 120d8f4807ee7fc56150daaf90ab8354956c862d https://github.com/buildbot/buildbot/commit/120d8f4807ee7fc56150daaf90ab8354956c862d Author: Dustin J. Mitchell Date: 2013-12-24 (Tue, 24 Dec 2013) Changed paths: M master/docs/developer/config.rst Log Message: ----------- add logEncoding to config.rst Commit: 74e4a4f9594a3d6677646759e22d82220a788ab3 https://github.com/buildbot/buildbot/commit/74e4a4f9594a3d6677646759e22d82220a788ab3 Author: Dustin J. Mitchell Date: 2013-12-27 (Fri, 27 Dec 2013) Changed paths: M master/docs/developer/config.rst Log Message: ----------- Merge branch '9/log-slugs' of git://github.com/djmitche/buildbot into nine (PR #1022) Compare: https://github.com/buildbot/buildbot/compare/4b61e1aa3847...74e4a4f9594a From noreply at github.com Sat Dec 28 02:42:50 2013 From: noreply at github.com (GitHub) Date: Fri, 27 Dec 2013 18:42:50 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] a8719e: reverse order of dropping tables to match dependen... Message-ID: <52be3aaab7ea3_30ac8fbd5885226@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: a8719e8fe409f28fda33750b997f66748cc8c6d4 https://github.com/buildbot/buildbot/commit/a8719e8fe409f28fda33750b997f66748cc8c6d4 Author: Dustin J. Mitchell Date: 2013-12-27 (Fri, 27 Dec 2013) Changed paths: M master/buildbot/db/migrate/versions/034_log_slug.py Log Message: ----------- reverse order of dropping tables to match dependencies From noreply at github.com Sun Dec 29 13:43:13 2013 From: noreply at github.com (GitHub) Date: Sun, 29 Dec 2013 05:43:13 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 5422d2: Add a BufferLogObserver and use it in SetPropertyF... Message-ID: <52c026f1f02de_b7ef57d5061774@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 5422d2e52b8c2f448f7b55d5f7d1cb40b10f92be https://github.com/buildbot/buildbot/commit/5422d2e52b8c2f448f7b55d5f7d1cb40b10f92be Author: Dustin J. Mitchell Date: 2013-12-28 (Sat, 28 Dec 2013) Changed paths: M master/buildbot/process/logobserver.py M master/buildbot/steps/shell.py M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Add a BufferLogObserver and use it in SetPropertyFromCommand Commit: 4609147a6bc378851a21ec956eabefab7bc18ac8 https://github.com/buildbot/buildbot/commit/4609147a6bc378851a21ec956eabefab7bc18ac8 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/process/logobserver.py M master/buildbot/steps/shell.py M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Merge branch '8/bufferedlogobserver' of git://github.com/djmitche/buildbot Compare: https://github.com/buildbot/buildbot/compare/4611405cb244...4609147a6bc3 From noreply at github.com Sun Dec 29 14:15:12 2013 From: noreply at github.com (GitHub) Date: Sun, 29 Dec 2013 06:15:12 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 2429b3: remove old log.hasContents method Message-ID: <52c02e70ab1bb_c05c71d4812596@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 2429b313746d4c8048fbd644c036516262a0f53a https://github.com/buildbot/buildbot/commit/2429b313746d4c8048fbd644c036516262a0f53a Author: Dustin J. Mitchell Date: 2013-12-27 (Fri, 27 Dec 2013) Changed paths: M master/buildbot/test/fake/logfile.py M master/buildbot/test/unit/test_process_log.py Log Message: ----------- remove old log.hasContents method Commit: bf65927642853455a0d79b9d6c9e3ac7ee8da19e https://github.com/buildbot/buildbot/commit/bf65927642853455a0d79b9d6c9e3ac7ee8da19e Author: Dustin J. Mitchell Date: 2013-12-27 (Fri, 27 Dec 2013) Changed paths: M README.md R master/buildbot/clients/debug.glade R master/buildbot/clients/debug.py R master/buildbot/clients/gtkPanes.py R master/buildbot/clients/text.py M master/buildbot/config.py M master/buildbot/data/builds.py M master/buildbot/data/steps.py M master/buildbot/process/build.py M master/buildbot/process/debug.py M master/buildbot/schedulers/trysched.py R master/buildbot/scripts/debugclient.py M master/buildbot/scripts/reconfig.py M master/buildbot/scripts/runner.py R master/buildbot/scripts/statusgui.py R master/buildbot/scripts/statuslog.py M master/buildbot/status/client.py M master/buildbot/test/fake/fakemq.py M master/buildbot/test/integration/test_try_client.py M master/buildbot/test/test_extra_coverage.py M master/buildbot/test/unit/test_config.py M master/buildbot/test/unit/test_data_steps.py M master/buildbot/test/unit/test_process_debug.py M master/buildbot/test/unit/test_schedulers_trysched.py M master/buildbot/test/unit/test_scripts_runner.py R master/buildbot/test/unit/test_scripts_statuslog.py M master/buildbot/test/unit/test_status_client.py M master/contrib/bash/buildbot R master/contrib/bb_applet.py M master/docs/buildbot.1 M master/docs/developer/config.rst M master/docs/developer/master-overview.rst M master/docs/examples/hello.cfg M master/docs/examples/twisted_master.cfg M master/docs/manual/cfg-global.rst M master/docs/manual/cfg-intro.rst M master/docs/manual/cfg-statustargets.rst M master/docs/manual/cmdline.rst M master/docs/manual/concepts.rst M master/docs/relnotes/index.rst M master/setup.py Log Message: ----------- remove debug and status client support * remove statusgui, statuslog, and debugclient commands * deprecate debugPassword global config * remove debug PB service (DebugService still handles the manhole) * try scheduler now implements internally the subset of remote status objects that the tryclient expects internally * PBListener is deprecated, although it will still work in configs * master/buildbot/status/client.py is almost completely gone, except for PBListener * data API fixes / hacks: * mq.startConsuming needs strings * change build.buildid.update -> finished * add startConsuming for StepsEndpoint * step['started_at'] can be None if the step hasn't started * step update methods now send events * mq message verification is disabled, since it is incompatible with sending multiple messages per event * builds' status strings aren't equivalent to the existing functionality Commit: 9317f0ff982ee14ac3c43d3fcb1c4e97db030095 https://github.com/buildbot/buildbot/commit/9317f0ff982ee14ac3c43d3fcb1c4e97db030095 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/data/steps.py Log Message: ----------- factor out generateEvent for steps Commit: bcefe1738e79a5f557a657d37da0ff9c875690c5 https://github.com/buildbot/buildbot/commit/bcefe1738e79a5f557a657d37da0ff9c875690c5 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M README.md R master/buildbot/clients/debug.glade R master/buildbot/clients/debug.py R master/buildbot/clients/gtkPanes.py R master/buildbot/clients/text.py M master/buildbot/config.py M master/buildbot/data/builds.py M master/buildbot/data/steps.py M master/buildbot/process/build.py M master/buildbot/process/debug.py M master/buildbot/schedulers/trysched.py R master/buildbot/scripts/debugclient.py M master/buildbot/scripts/reconfig.py M master/buildbot/scripts/runner.py R master/buildbot/scripts/statusgui.py R master/buildbot/scripts/statuslog.py M master/buildbot/status/client.py M master/buildbot/test/fake/fakemq.py M master/buildbot/test/fake/logfile.py M master/buildbot/test/integration/test_try_client.py M master/buildbot/test/test_extra_coverage.py M master/buildbot/test/unit/test_config.py M master/buildbot/test/unit/test_data_steps.py M master/buildbot/test/unit/test_process_debug.py M master/buildbot/test/unit/test_process_log.py M master/buildbot/test/unit/test_schedulers_trysched.py M master/buildbot/test/unit/test_scripts_runner.py R master/buildbot/test/unit/test_scripts_statuslog.py M master/buildbot/test/unit/test_status_client.py M master/contrib/bash/buildbot R master/contrib/bb_applet.py M master/docs/buildbot.1 M master/docs/developer/config.rst M master/docs/developer/master-overview.rst M master/docs/examples/hello.cfg M master/docs/examples/twisted_master.cfg M master/docs/manual/cfg-global.rst M master/docs/manual/cfg-intro.rst M master/docs/manual/cfg-statustargets.rst M master/docs/manual/cmdline.rst M master/docs/manual/concepts.rst M master/docs/relnotes/index.rst M master/setup.py Log Message: ----------- Merge branch '9/use-data-api-2' of git://github.com/djmitche/buildbot into nine Compare: https://github.com/buildbot/buildbot/compare/a8719e8fe409...bcefe1738e79 From noreply at github.com Sun Dec 29 14:49:52 2013 From: noreply at github.com (GitHub) Date: Sun, 29 Dec 2013 06:49:52 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 75355e: Add support for header output to LogObservers. Message-ID: <52c0369027d3d_c604a5d5810334c@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 75355ee9b175b07936a4568827b9b3e24f107fae https://github.com/buildbot/buildbot/commit/75355ee9b175b07936a4568827b9b3e24f107fae Author: Dustin J. Mitchell Date: 2013-12-28 (Sat, 28 Dec 2013) Changed paths: M master/buildbot/process/logobserver.py M master/buildbot/test/unit/test_process_logobserver.py M master/docs/developer/cls-logobserver.rst Log Message: ----------- Add support for header output to LogObservers. It turns out that this isn't necessary for anything in Buildbot, but may be useful to users. Commit: 1ec1dd5150d47caf58fa6692558445cc698fef6a https://github.com/buildbot/buildbot/commit/1ec1dd5150d47caf58fa6692558445cc698fef6a Author: Dustin J. Mitchell Date: 2013-12-28 (Sat, 28 Dec 2013) Changed paths: R master/buildbot/status/tinderbox.py M master/buildbot/test/test_extra_coverage.py Log Message: ----------- Remove TinderboxMailNotifier And with it, the last ues of log.getTextWithHeaders Commit: 689565edab1c48cbfd410415f931253d8fe05f74 https://github.com/buildbot/buildbot/commit/689565edab1c48cbfd410415f931253d8fe05f74 Author: Dustin J. Mitchell Date: 2013-12-28 (Sat, 28 Dec 2013) Changed paths: M master/buildbot/status/logfile.py M master/buildbot/test/fake/logfile.py M master/buildbot/test/unit/test_process_log.py M master/buildbot/test/unit/test_steps_source_repo.py M master/docs/relnotes/index.rst Log Message: ----------- remove log.getTextWithHeaders Commit: 63505a1aecec3a82ade9744c455b625aa948f9d9 https://github.com/buildbot/buildbot/commit/63505a1aecec3a82ade9744c455b625aa948f9d9 Author: Dustin J. Mitchell Date: 2013-12-28 (Sat, 28 Dec 2013) Changed paths: M master/buildbot/test/fake/logfile.py Log Message: ----------- send headers in fake log files to observers, check line endings, and encode properly Commit: 8170e2fba69b2e1e7613980541406123ea21bce1 https://github.com/buildbot/buildbot/commit/8170e2fba69b2e1e7613980541406123ea21bce1 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/test/fake/logfile.py Log Message: ----------- header line-ending checks were too aggressive Commit: 2c8391db79cbd485b03156263d8dd5c4cfb96a03 https://github.com/buildbot/buildbot/commit/2c8391db79cbd485b03156263d8dd5c4cfb96a03 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/process/logobserver.py M master/buildbot/status/logfile.py R master/buildbot/status/tinderbox.py M master/buildbot/test/fake/logfile.py M master/buildbot/test/test_extra_coverage.py M master/buildbot/test/unit/test_process_log.py M master/buildbot/test/unit/test_process_logobserver.py M master/buildbot/test/unit/test_steps_source_repo.py M master/docs/developer/cls-logobserver.rst M master/docs/relnotes/index.rst Log Message: ----------- Merge branch '9/use-data-api-3' of git://github.com/djmitche/buildbot into nine Compare: https://github.com/buildbot/buildbot/compare/bcefe1738e79...2c8391db79cb From noreply at github.com Sun Dec 29 17:00:37 2013 From: noreply at github.com (GitHub) Date: Sun, 29 Dec 2013 09:00:37 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 511e6b: support pylint-1.1.0 Message-ID: <52c055354ea6a_bd71237d54487c0@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 511e6b26e6221a83ce317d8930f2437e71e2b540 https://github.com/buildbot/buildbot/commit/511e6b26e6221a83ce317d8930f2437e71e2b540 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M common/pylintrc Log Message: ----------- support pylint-1.1.0 From noreply at github.com Sun Dec 29 21:16:29 2013 From: noreply at github.com (GitHub) Date: Sun, 29 Dec 2013 13:16:29 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 497725: buildbotService: rework, for better event support Message-ID: <52c0912d858f8_7733c15d54648fa@hookshot-fe1-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 497725e24800288a075f3739fa77249c50e99545 https://github.com/buildbot/buildbot/commit/497725e24800288a075f3739fa77249c50e99545 Author: Pierre Tardy Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M .gitignore M master/buildbot/test/unit/test_data_forceschedulers.py M master/docs/developer/www.rst M www/Gruntfile.coffee M www/setup.py M www/src/scripts/app.coffee M www/src/scripts/controllers/aboutController.coffee M www/src/scripts/controllers/buildController.coffee M www/src/scripts/controllers/builderController.coffee M www/src/scripts/controllers/buildersController.coffee A www/src/scripts/controllers/buildslavesController.coffee M www/src/scripts/controllers/changesController.coffee M www/src/scripts/controllers/logController.coffee A www/src/scripts/controllers/mastersController.coffee M www/src/scripts/controllers/schedulersController.coffee A www/src/scripts/controllers/stepController.coffee M www/src/scripts/directives/forcefields.coffee M www/src/scripts/directives/logviewer.coffee A www/src/scripts/directives/rawdata.coffee M www/src/scripts/filters/moment.coffee M www/src/scripts/routes.coffee M www/src/scripts/services/alertService.coffee M www/src/scripts/services/buildbotService.coffee R www/src/scripts/services/messageService.coffee A www/src/scripts/services/mqservice.coffee M www/src/views/build.jade A www/src/views/buildslaves.jade A www/src/views/directives/rawdata.jade A www/src/views/masters.jade M www/src/views/schedulers.jade A www/src/views/step.jade M www/test/scripts/mocks/httpMock.coffee M www/test/scripts/services/buildbotServiceSpec.coffee A www/test/scripts/services/mqServiceSpec.coffee Log Message: ----------- buildbotService: rework, for better event support New api simplifies a lot the common use cases of the controllers: bind() now registers to 'update' events on all element of the list e.g: sse/add/aa4514dc-adae-4b2e-8c1f-d5037574821f/builder/2/build/*/new sse/add/aa4514dc-adae-4b2e-8c1f-d5037574821f/builder/2/build/*/change bind() now takes a onchild callback, which will be called at init time, and also at event time when new child are happening. This help to populate subchilds. See doc for more info on the new api. + bump up a few versions + re-enable coffeelint, and fix the remaining errors + some new pages Commit: 72dc28658eeb883e3ea0f4eecbe4984fa314ecfd https://github.com/buildbot/buildbot/commit/72dc28658eeb883e3ea0f4eecbe4984fa314ecfd Author: Pierre Tardy Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/data/forceschedulers.py M master/docs/developer/www.rst M www/src/scripts/controllers/builderController.coffee M www/src/scripts/controllers/buildersController.coffee M www/src/scripts/controllers/forcedialogController.coffee M www/src/scripts/services/buildbotService.coffee M www/test/scripts/services/buildbotServiceSpec.coffee Log Message: ----------- buildbotService: reuse of bound data see doc change. The goal of this commit is to enable much faster user experience by doing more internal caching Signed-off-by: Pierre Tardy Commit: 777c49a1730062234719fb61d7d6346d04d1ac98 https://github.com/buildbot/buildbot/commit/777c49a1730062234719fb61d7d6346d04d1ac98 Author: Pierre Tardy Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/test/unit/test_www_sse.py M master/buildbot/www/sse.py M www/Gruntfile.coffee M www/setup.py M www/src/scripts/services/buildbotService.coffee M www/src/scripts/services/mqservice.coffee M www/test/scripts/services/buildbotServiceSpec.coffee Log Message: ----------- fix some issues: - latest version of karma needed some adaptation - sse directly use mq api, in order to avoid filtering - fix memoize only take the first argument in account - fix mqservice to allow event name to be tuple or paths Signed-off-by: Pierre Tardy Commit: cd32b89a8da0e76929ee8c2294a0211c499cd563 https://github.com/buildbot/buildbot/commit/cd32b89a8da0e76929ee8c2294a0211c499cd563 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M .gitignore M master/buildbot/data/forceschedulers.py M master/buildbot/test/unit/test_data_forceschedulers.py M master/buildbot/test/unit/test_www_sse.py M master/buildbot/www/sse.py M master/docs/developer/www.rst M www/Gruntfile.coffee M www/setup.py M www/src/scripts/app.coffee M www/src/scripts/controllers/aboutController.coffee M www/src/scripts/controllers/buildController.coffee M www/src/scripts/controllers/builderController.coffee M www/src/scripts/controllers/buildersController.coffee A www/src/scripts/controllers/buildslavesController.coffee M www/src/scripts/controllers/changesController.coffee M www/src/scripts/controllers/forcedialogController.coffee M www/src/scripts/controllers/logController.coffee A www/src/scripts/controllers/mastersController.coffee M www/src/scripts/controllers/schedulersController.coffee A www/src/scripts/controllers/stepController.coffee M www/src/scripts/directives/forcefields.coffee M www/src/scripts/directives/logviewer.coffee A www/src/scripts/directives/rawdata.coffee M www/src/scripts/filters/moment.coffee M www/src/scripts/routes.coffee M www/src/scripts/services/alertService.coffee M www/src/scripts/services/buildbotService.coffee R www/src/scripts/services/messageService.coffee A www/src/scripts/services/mqservice.coffee M www/src/views/build.jade A www/src/views/buildslaves.jade A www/src/views/directives/rawdata.jade A www/src/views/masters.jade M www/src/views/schedulers.jade A www/src/views/step.jade M www/test/scripts/mocks/httpMock.coffee M www/test/scripts/services/buildbotServiceSpec.coffee A www/test/scripts/services/mqServiceSpec.coffee Log Message: ----------- Merge branch 'sserework' of git://github.com/tardyp/buildbot into nine +autopep8 Compare: https://github.com/buildbot/buildbot/compare/2c8391db79cb...cd32b89a8da0 From noreply at github.com Sun Dec 29 23:33:29 2013 From: noreply at github.com (GitHub) Date: Sun, 29 Dec 2013 15:33:29 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 61df39: Add a BufferLogObserver and use it in SetPropertyF... Message-ID: <52c0b1493ac12_cd71243d48286fa@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 61df3925c54de173dafb56c88f783318954a154d https://github.com/buildbot/buildbot/commit/61df3925c54de173dafb56c88f783318954a154d Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/process/logobserver.py M master/buildbot/steps/shell.py M master/buildbot/test/unit/test_process_logobserver.py M master/docs/developer/cls-logobserver.rst M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Add a BufferLogObserver and use it in SetPropertyFromCommand Commit: 4a212dc33df8113de45c63671d155036c95ef643 https://github.com/buildbot/buildbot/commit/4a212dc33df8113de45c63671d155036c95ef643 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/test/fake/logfile.py M master/buildbot/test/unit/test_process_log.py Log Message: ----------- Remove getChunks from LogFile Commit: 109488764667bc0151939df35eed538cf1b5916d https://github.com/buildbot/buildbot/commit/109488764667bc0151939df35eed538cf1b5916d Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/process/logobserver.py M master/buildbot/test/unit/test_process_logobserver.py Log Message: ----------- test OutputProgressObserver and fix failure when data=None Commit: 766976f2d79909e7e67e006cd7d0f68900c6d1ba https://github.com/buildbot/buildbot/commit/766976f2d79909e7e67e006cd7d0f68900c6d1ba Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/process/logobserver.py M master/buildbot/steps/shell.py M master/buildbot/test/fake/logfile.py M master/buildbot/test/unit/test_process_log.py M master/buildbot/test/unit/test_process_logobserver.py M master/docs/developer/cls-logobserver.rst M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Merge branch '9/use-data-api-4' of git://github.com/djmitche/buildbot into nine Compare: https://github.com/buildbot/buildbot/compare/cd32b89a8da0...766976f2d799 From noreply at github.com Sun Dec 29 23:51:46 2013 From: noreply at github.com (GitHub) Date: Sun, 29 Dec 2013 15:51:46 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 134f79: include deprecation of try with --connect=ssh and ... Message-ID: <52c0b592be1d5_79374f7d4c1293c@hookshot-fe1-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 134f79785b7eb610797e35878768d72d561fba55 https://github.com/buildbot/buildbot/commit/134f79785b7eb610797e35878768d72d561fba55 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/docs/relnotes/index.rst Log Message: ----------- include deprecation of try with --connect=ssh and --wait from master From noreply at github.com Sun Dec 29 23:51:43 2013 From: noreply at github.com (GitHub) Date: Sun, 29 Dec 2013 15:51:43 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 55c487: tweak relnotes Message-ID: <52c0b58f8e9f5_20b510ffd4c2721d@hookshot-fe5-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 55c48726343b8054b9ecace678e01194d0e1a2c5 https://github.com/buildbot/buildbot/commit/55c48726343b8054b9ecace678e01194d0e1a2c5 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/docs/relnotes/index.rst Log Message: ----------- tweak relnotes From noreply at github.com Sun Dec 29 23:59:06 2013 From: noreply at github.com (GitHub) Date: Sun, 29 Dec 2013 15:59:06 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 158e30: clean up changes to try scheduler Message-ID: <52c0b74a88b97_7b6fb03d5881211@hookshot-fe4-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 158e3059b113fea4ce7c81376c2a237f5c7cd496 https://github.com/buildbot/buildbot/commit/158e3059b113fea4ce7c81376c2a237f5c7cd496 Author: Dustin J. Mitchell Date: 2013-12-26 (Thu, 26 Dec 2013) Changed paths: M master/buildbot/clients/tryclient.py M master/docs/manual/cmdline.rst M master/docs/relnotes/index.rst Log Message: ----------- clean up changes to try scheduler Commit: 4611405cb244c7213f584a516ece897fa663b3da https://github.com/buildbot/buildbot/commit/4611405cb244c7213f584a516ece897fa663b3da Author: Dustin J. Mitchell Date: 2013-12-26 (Thu, 26 Dec 2013) Changed paths: M master/buildbot/clients/tryclient.py M master/docs/manual/cmdline.rst M master/docs/relnotes/index.rst Log Message: ----------- Merge branch '8/trysched-cleanup' of git://github.com/djmitche/buildbot (PR #1027) Commit: 5422d2e52b8c2f448f7b55d5f7d1cb40b10f92be https://github.com/buildbot/buildbot/commit/5422d2e52b8c2f448f7b55d5f7d1cb40b10f92be Author: Dustin J. Mitchell Date: 2013-12-28 (Sat, 28 Dec 2013) Changed paths: M master/buildbot/process/logobserver.py M master/buildbot/steps/shell.py M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Add a BufferLogObserver and use it in SetPropertyFromCommand Commit: 4609147a6bc378851a21ec956eabefab7bc18ac8 https://github.com/buildbot/buildbot/commit/4609147a6bc378851a21ec956eabefab7bc18ac8 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/buildbot/process/logobserver.py M master/buildbot/steps/shell.py M master/docs/manual/cfg-buildsteps.rst Log Message: ----------- Merge branch '8/bufferedlogobserver' of git://github.com/djmitche/buildbot Commit: 511e6b26e6221a83ce317d8930f2437e71e2b540 https://github.com/buildbot/buildbot/commit/511e6b26e6221a83ce317d8930f2437e71e2b540 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M common/pylintrc Log Message: ----------- support pylint-1.1.0 Commit: 55c48726343b8054b9ecace678e01194d0e1a2c5 https://github.com/buildbot/buildbot/commit/55c48726343b8054b9ecace678e01194d0e1a2c5 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M master/docs/relnotes/index.rst Log Message: ----------- tweak relnotes Commit: e3761e6ba991f28d1732a64a7b2206c3fc82808b https://github.com/buildbot/buildbot/commit/e3761e6ba991f28d1732a64a7b2206c3fc82808b Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M common/pylintrc M master/buildbot/clients/tryclient.py M master/docs/manual/cmdline.rst Log Message: ----------- Merge branch 'master' into nine Conflicts: master/buildbot/process/logobserver.py master/buildbot/steps/shell.py Compare: https://github.com/buildbot/buildbot/compare/134f79785b7e...e3761e6ba991 From noreply at github.com Mon Dec 30 01:30:05 2013 From: noreply at github.com (GitHub) Date: Sun, 29 Dec 2013 17:30:05 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] e5af73: update README.md to better resemble a list of task... Message-ID: <52c0cc9dcc24e_c959e9d504945c@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: e5af73738b15e935ace3baf0951b7c862ad4e3a3 https://github.com/buildbot/buildbot/commit/e5af73738b15e935ace3baf0951b7c862ad4e3a3 Author: Dustin J. Mitchell Date: 2013-12-29 (Sun, 29 Dec 2013) Changed paths: M README.md Log Message: ----------- update README.md to better resemble a list of tasks From noreply at github.com Mon Dec 30 19:10:43 2013 From: noreply at github.com (GitHub) Date: Mon, 30 Dec 2013 11:10:43 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 579bb0: de-duplicate new builds in try scheduler Message-ID: <52c1c53321d72_cb4727d4c52031@hookshot-fe2-pe1-prd.aws.github.net.mail> Branch: refs/heads/nine Home: https://github.com/buildbot/buildbot Commit: 579bb08a043852f63f4562f1b6da46475760117b https://github.com/buildbot/buildbot/commit/579bb08a043852f63f4562f1b6da46475760117b Author: Dustin J. Mitchell Date: 2013-12-30 (Mon, 30 Dec 2013) Changed paths: M master/buildbot/schedulers/trysched.py Log Message: ----------- de-duplicate new builds in try scheduler From noreply at github.com Tue Dec 31 17:09:38 2013 From: noreply at github.com (GitHub) Date: Tue, 31 Dec 2013 09:09:38 -0800 Subject: [Buildbot-commits] [buildbot/buildbot] 8572c1: don't let printStatus produce unexpected results Message-ID: <52c2fa52990f8_7d2a12ebd549393d@hookshot-fe6-pe1-prd.aws.github.net.mail> Branch: refs/heads/master Home: https://github.com/buildbot/buildbot Commit: 8572c1d669c56d23b71b5a31b3f47fedb2d7d551 https://github.com/buildbot/buildbot/commit/8572c1d669c56d23b71b5a31b3f47fedb2d7d551 Author: Dustin J. Mitchell Date: 2013-12-31 (Tue, 31 Dec 2013) Changed paths: M master/buildbot/test/integration/test_try_client.py Log Message: ----------- don't let printStatus produce unexpected results