summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2014-08-09 15:33:04 -0600
committerSimon Glass <sjg@chromium.org>2014-08-13 08:34:15 -0600
commitd3269ed380c50eeb5230de8ba1fd62fbe3cc263d (patch)
tree2c85c1c05e775747f8285ae90ef02c0d1c32841c /tools
parente5a0e5d84239c71a156a0a14d9332c5532f2411e (diff)
downloadblackbird-obmc-uboot-d3269ed380c50eeb5230de8ba1fd62fbe3cc263d.tar.gz
blackbird-obmc-uboot-d3269ed380c50eeb5230de8ba1fd62fbe3cc263d.zip
buildman: Remove unused non-incremental build method code
The non-incremental build method is no longer used, so remove it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools')
-rw-r--r--tools/buildman/builder.py34
-rw-r--r--tools/buildman/test.py1
2 files changed, 0 insertions, 35 deletions
diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py
index dd7f5a459f..22a24b127c 100644
--- a/tools/buildman/builder.py
+++ b/tools/buildman/builder.py
@@ -955,40 +955,6 @@ class Builder:
self.upto = self.warned = self.fail = 0
self._timestamps = collections.deque()
- def BuildBoardsForCommit(self, board_selected, keep_outputs):
- """Build all boards for a single commit"""
- self.SetupBuild(board_selected)
- self.count = len(board_selected)
- for brd in board_selected.itervalues():
- job = BuilderJob()
- job.board = brd
- job.commits = None
- job.keep_outputs = keep_outputs
- self.queue.put(brd)
-
- self.queue.join()
- self.out_queue.join()
- print
- self.ClearLine(0)
-
- def BuildCommits(self, commits, board_selected, show_errors, keep_outputs):
- """Build all boards for all commits (non-incremental)"""
- self.commit_count = len(commits)
-
- self.ResetResultSummary(board_selected)
- for self.commit_upto in range(self.commit_count):
- self.SelectCommit(commits[self.commit_upto])
- self.SelectOutputDir()
- builderthread.Mkdir(self.output_dir)
-
- self.BuildBoardsForCommit(board_selected, keep_outputs)
- board_dict, err_lines = self.GetResultSummary()
- self.PrintResultSummary(board_selected, board_dict,
- err_lines if show_errors else [])
-
- if self.already_done:
- print '%d builds already done' % self.already_done
-
def GetThreadDir(self, thread_num):
"""Get the directory path to the working dir for a thread.
diff --git a/tools/buildman/test.py b/tools/buildman/test.py
index a724d8347a..502c9b4e80 100644
--- a/tools/buildman/test.py
+++ b/tools/buildman/test.py
@@ -136,7 +136,6 @@ class TestBuild(unittest.TestCase):
build.do_make = self.Make
board_selected = self.boards.GetSelectedDict()
- #build.BuildCommits(self.commits, board_selected, False)
build.BuildBoards(self.commits, board_selected, keep_outputs=False,
verbose=False)
build.SetDisplayOptions(show_errors=True);
OpenPOWER on IntegriCloud