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>
This commit is contained in:
parent
e5a0e5d842
commit
d3269ed380
@ -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.
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user