Home | History | Annotate | Download | only in suite_scheduler

Lines Matching full:board

41 def BuildName(board, type, milestone, manifest):
42 """Format a build name, given board, type, milestone, and manifest number.
44 @param board: board the manifest is for, e.g. x86-alex.
50 return '%s-%s/R%s-%s' % (board, type, milestone, manifest)
169 def GetBranchBuildsForBoard(self, board):
170 """Get per-branch, per-board builds since last run of this event.
172 @param board: the board whose builds we want.
180 def GetLaunchControlBuildsForBoard(self, board):
181 """Get per-branch, per-board builds since last run of this event.
183 @param board: the board whose builds we want.
185 @return: A list of Launch Control builds for the given board, e.g.,
222 def Handle(self, scheduler, branch_builds, board, force=False,
234 @param board: the board against which to Run() all of self._tasks.
238 logging.info('Handling %s for %s', self.keyword, board)
242 if task.AvailableHosts(scheduler, board):
243 if not task.Run(scheduler, branch_builds, board, force,
248 task, board)
251 def _LatestLaunchControlBuilds(self, board):
252 """Get latest per-branch, per-board builds.
254 @param board: the board whose builds we want, e.g., shamu.
256 @return: A list of Launch Control builds for the given board, e.g.,
260 # Translate board name to the actual board name in build target.
261 board = utils.ANDROID_BOARD_TO_TARGET_MAP.get(board, board)
268 # The first part should match the board name.
271 if board == utils.parse_launch_control_target(t)[0]]