diff options
author | Simon Glass <sjg@chromium.org> | 2014-08-09 15:33:04 -0600 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2014-08-13 08:34:15 -0600 |
commit | d3269ed380c50eeb5230de8ba1fd62fbe3cc263d (patch) | |
tree | 2c85c1c05e775747f8285ae90ef02c0d1c32841c /tools/buildman/builder.py | |
parent | e5a0e5d84239c71a156a0a14d9332c5532f2411e (diff) | |
download | u-boot-d3269ed380c50eeb5230de8ba1fd62fbe3cc263d.tar.gz u-boot-d3269ed380c50eeb5230de8ba1fd62fbe3cc263d.tar.xz u-boot-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/buildman/builder.py')
-rw-r--r-- | tools/buildman/builder.py | 34 |
1 files changed, 0 insertions, 34 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. |