Lines Matching full:board
62 def _AllPerBranchBuildsSince(self, board, revision):
63 """Get all per-branch, per-board builds since git |revision|.
65 @param board: the board whose builds we want.
69 all_branch_manifests = self._mv.ManifestsSinceRev(revision, board)
74 build = base_event.BuildName(board, type, milestone, manifest)
79 def GetBranchBuildsForBoard(self, board):
80 return self._AllPerBranchBuildsSince(board, self._revision)
83 def GetLaunchControlBuildsForBoard(self, board):
84 """Get per-branch, per-board builds since last run of this event.
86 @param board: the board whose builds we want.
88 @return: A list of Launch Control builds for the given board, e.g.,
92 return self._LatestLaunchControlBuilds(board)