buildman: Drop unused output code
authorSimon Glass <sjg@chromium.org>
Thu, 9 Apr 2020 21:08:44 +0000 (15:08 -0600)
committerSimon Glass <sjg@chromium.org>
Tue, 21 Apr 2020 12:33:47 +0000 (06:33 -0600)
The commit counter is a hangover from when buildman processed each board
for a commit. Now buildman processes each commit for a board, so this
output is never triggered.

Delete it.

Signed-off-by: Simon Glass <sjg@chromium.org>
tools/buildman/builder.py

index ccf46ac5f6700ac86f29cb3948c2022fa6518a93..ae8eee16e35475af2afd96bcf9f827766d62426a 100644 (file)
@@ -450,11 +450,6 @@ class Builder:
         self._AddTimestamp()
         if self._complete_delay:
             name += '%s  : ' % self._complete_delay
-        # When building all boards for a commit, we can print a commit
-        # progress message.
-        if result and result.commit_upto is None:
-            name += 'commit %2d/%-3d' % (self.commit_upto + 1,
-                    self.commit_count)
 
         name += target
         terminal.PrintClear()