Home | History | Annotate | Download | only in suite_scheduler

Lines Matching full:board

65     def _LatestPerBranchBuildsSince(self, board, days_ago):
66 """Get latest per-branch, per-board builds from last |days_ago| days.
68 @param board: the board whose builds we want.
74 all_branch_manifests = self._mv.ManifestsSinceDate(since_date, board)
77 build = base_event.BuildName(board, type, milestone, manifests[-1])
84 def _LatestLaunchControlBuildsSince(self, board, days_ago):
85 """Get per-branch, per-board builds since last run of this event.
87 @param board: the board whose builds we want, e.g., android-shamu.
90 @return: A list of Launch Control builds for the given board, e.g.,
96 return self._LatestLaunchControlBuilds(board)
99 def GetBranchBuildsForBoard(self, board):
100 """Get per-branch, per-board builds since last run of this event.
102 return self._LatestPerBranchBuildsSince(board, self.DAYS_INTERVAL)
105 def GetLaunchControlBuildsForBoard(self, board):
106 """Get per-branch, per-board builds since last run of this event.
108 @param board: the board whose builds we want.
110 @return: A list of Launch Control builds for the given board, e.g.,
114 return self._LatestLaunchControlBuildsSince(board, self.DAYS_INTERVAL)