blob: 72f0acc2fd097a83a6cb5328691f125a66165c47 [file] [log] [blame]
Brian Harring3fec5a82012-03-01 05:57:03 -08001#!/usr/bin/python
2
Mike Frysingerd6925b52012-07-16 16:11:00 -04003# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Brian Harring3fec5a82012-03-01 05:57:03 -08004# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7"""Main builder code for Chromium OS.
8
9Used by Chromium OS buildbot configuration for all Chromium OS builds including
10full and pre-flight-queue builds.
11"""
12
13import distutils.version
14import glob
Chris Sosa4f6ffaf2012-05-01 17:05:44 -070015import logging
David James58e0c092012-03-04 20:31:12 -080016import multiprocessing
Brian Harring3fec5a82012-03-01 05:57:03 -080017import optparse
18import os
19import pprint
20import sys
Ryan Cui54da0702012-04-19 18:38:08 -070021import time
Brian Harring3fec5a82012-03-01 05:57:03 -080022
23from chromite.buildbot import builderstage as bs
24from chromite.buildbot import cbuildbot_background as background
25from chromite.buildbot import cbuildbot_config
26from chromite.buildbot import cbuildbot_stages as stages
27from chromite.buildbot import cbuildbot_results as results_lib
Brian Harring3fec5a82012-03-01 05:57:03 -080028from chromite.buildbot import constants
29from chromite.buildbot import gerrit_helper
30from chromite.buildbot import patch as cros_patch
31from chromite.buildbot import remote_try
32from chromite.buildbot import repository
33from chromite.buildbot import tee
Ryan Cui16d9e1f2012-05-11 10:50:18 -070034from chromite.buildbot import trybot_patch_pool
Brian Harring3fec5a82012-03-01 05:57:03 -080035
Brian Harringc92a7012012-02-29 10:11:34 -080036from chromite.lib import cgroups
Brian Harringa184efa2012-03-04 11:51:25 -080037from chromite.lib import cleanup
Brian Harring1b8c4c82012-05-29 23:03:04 -070038from chromite.lib import cros_build_lib
Brian Harringaf019fb2012-05-10 15:06:13 -070039from chromite.lib import osutils
Brian Harring3fec5a82012-03-01 05:57:03 -080040from chromite.lib import sudo
41
Ryan Cuiadd49122012-03-21 22:19:58 -070042
Brian Harring1b8c4c82012-05-29 23:03:04 -070043cros_build_lib.STRICT_SUDO = True
Brian Harring3fec5a82012-03-01 05:57:03 -080044
45_DEFAULT_LOG_DIR = 'cbuildbot_logs'
46_BUILDBOT_LOG_FILE = 'cbuildbot.log'
47_DEFAULT_EXT_BUILDROOT = 'trybot'
48_DEFAULT_INT_BUILDROOT = 'trybot-internal'
Brian Harring3fec5a82012-03-01 05:57:03 -080049_DISTRIBUTED_TYPES = [constants.COMMIT_QUEUE_TYPE, constants.PFQ_TYPE,
50 constants.CANARY_TYPE, constants.CHROME_PFQ_TYPE,
51 constants.PALADIN_TYPE]
Brian Harring351ce442012-03-09 16:38:14 -080052_BUILDBOT_REQUIRED_BINARIES = ('pbzip2',)
Brian Harring3fec5a82012-03-01 05:57:03 -080053
Brian Harring37e559b2012-05-22 20:47:32 -070054# Used by --resume and --bootstrap to decipher which options they
55# can pass to the target cbuildbot (since it may not have that
56# option).
57# Format is Major:Minor. Minor is used for tracking new options added
58# that aren't critical to the older version if it's not ran.
59# Major is used for tracking heavy API breakage- for example, no longer
60# supporting the --resume option.
61_REEXEC_API_MAJOR = 0
62_REEXEC_API_MINOR = 1
63_REEXEC_API_VERSION = '%i.%i' % (_REEXEC_API_MAJOR, _REEXEC_API_MINOR)
64
Brian Harring3fec5a82012-03-01 05:57:03 -080065
Ryan Cui4f6cf7e2012-04-18 16:12:27 -070066def _PrintValidConfigs(display_all=False):
Brian Harring3fec5a82012-03-01 05:57:03 -080067 """Print a list of valid buildbot configs.
68
69 Arguments:
Ryan Cui4f6cf7e2012-04-18 16:12:27 -070070 display_all: Print all configs. Otherwise, prints only configs with
71 trybot_list=True.
Brian Harring3fec5a82012-03-01 05:57:03 -080072 """
Ryan Cui4f6cf7e2012-04-18 16:12:27 -070073 def _GetSortKey(config_name):
74 config_dict = cbuildbot_config.config[config_name]
75 return (not config_dict['trybot_list'], config_dict['description'],
76 config_name)
77
Brian Harring3fec5a82012-03-01 05:57:03 -080078 COLUMN_WIDTH = 45
79 print 'config'.ljust(COLUMN_WIDTH), 'description'
80 print '------'.ljust(COLUMN_WIDTH), '-----------'
81 config_names = cbuildbot_config.config.keys()
Ryan Cui4f6cf7e2012-04-18 16:12:27 -070082 config_names.sort(key=_GetSortKey)
Brian Harring3fec5a82012-03-01 05:57:03 -080083 for name in config_names:
Ryan Cui4f6cf7e2012-04-18 16:12:27 -070084 if display_all or cbuildbot_config.config[name]['trybot_list']:
85 desc = cbuildbot_config.config[name].get('description')
86 desc = desc if desc else ''
Brian Harring3fec5a82012-03-01 05:57:03 -080087 print name.ljust(COLUMN_WIDTH), desc
88
89
90def _GetConfig(config_name):
91 """Gets the configuration for the build"""
92 if not cbuildbot_config.config.has_key(config_name):
93 print 'Non-existent configuration %s specified.' % config_name
94 print 'Please specify one of:'
95 _PrintValidConfigs()
96 sys.exit(1)
97
98 result = cbuildbot_config.config[config_name]
99
100 return result
101
102
Ryan Cuie1e4e662012-05-21 16:39:46 -0700103def AcquirePoolFromOptions(options):
Ryan Cui16d9e1f2012-05-11 10:50:18 -0700104 """Generate patch objects from passed in options.
Brian Harring3fec5a82012-03-01 05:57:03 -0800105
106 Args:
Ryan Cui16d9e1f2012-05-11 10:50:18 -0700107 options: The options object generated by optparse.
Brian Harring3fec5a82012-03-01 05:57:03 -0800108
Ryan Cuif7f24692012-05-18 16:35:33 -0700109 Returns:
110 trybot_patch_pool.TrybotPatchPool object.
111
Ryan Cui16d9e1f2012-05-11 10:50:18 -0700112 Raises:
113 gerrit_helper.GerritException, cros_patch.PatchException
Brian Harring3fec5a82012-03-01 05:57:03 -0800114 """
Ryan Cui16d9e1f2012-05-11 10:50:18 -0700115 gerrit_patches = []
116 local_patches = []
117 remote_patches = []
Brian Harring3fec5a82012-03-01 05:57:03 -0800118
Ryan Cui16d9e1f2012-05-11 10:50:18 -0700119 if options.gerrit_patches:
120 gerrit_patches = gerrit_helper.GetGerritPatchInfo(
121 options.gerrit_patches)
122 for patch in gerrit_patches:
123 if patch.IsAlreadyMerged():
Brian Harring1b8c4c82012-05-29 23:03:04 -0700124 cros_build_lib.Warning('Patch %s has already been merged.' % str(patch))
Brian Harring3fec5a82012-03-01 05:57:03 -0800125
Ryan Cui16d9e1f2012-05-11 10:50:18 -0700126 if options.local_patches:
Brian Harring1b8c4c82012-05-29 23:03:04 -0700127 manifest = cros_build_lib.ManifestCheckout.Cached(options.sourceroot)
Brian Harring609dc4e2012-05-07 02:17:44 -0700128 local_patches = cros_patch.PrepareLocalPatches(manifest,
129 options.local_patches)
Brian Harring3fec5a82012-03-01 05:57:03 -0800130
Ryan Cui16d9e1f2012-05-11 10:50:18 -0700131 if options.remote_patches:
132 remote_patches = cros_patch.PrepareRemotePatches(
133 options.remote_patches)
Brian Harring3fec5a82012-03-01 05:57:03 -0800134
Ryan Cui16d9e1f2012-05-11 10:50:18 -0700135 return trybot_patch_pool.TrybotPatchPool(gerrit_patches, local_patches,
136 remote_patches)
Brian Harring3fec5a82012-03-01 05:57:03 -0800137
138
Brian Harring3fec5a82012-03-01 05:57:03 -0800139class Builder(object):
140 """Parent class for all builder types.
141
142 This class functions as a parent class for various build types. It's intended
143 use is builder_instance.Run().
144
145 Vars:
Brian Harring3fec5a82012-03-01 05:57:03 -0800146 build_config: The configuration dictionary from cbuildbot_config.
147 options: The options provided from optparse in main().
Brian Harring3fec5a82012-03-01 05:57:03 -0800148 archive_url: Where our artifacts for this builder will be archived.
149 tracking_branch: The tracking branch for this build.
150 release_tag: The associated "chrome os version" of this build.
Brian Harring3fec5a82012-03-01 05:57:03 -0800151 """
152
Ryan Cuie1e4e662012-05-21 16:39:46 -0700153 def __init__(self, options, build_config):
Brian Harring3fec5a82012-03-01 05:57:03 -0800154 """Initializes instance variables. Must be called by all subclasses."""
Brian Harring3fec5a82012-03-01 05:57:03 -0800155 self.build_config = build_config
156 self.options = options
157
158 # TODO, Remove here and in config after bug chromium-os:14649 is fixed.
159 if self.build_config['chromeos_official']:
160 os.environ['CHROMEOS_OFFICIAL'] = '1'
161
David James58e0c092012-03-04 20:31:12 -0800162 self.archive_stages = {}
Brian Harring3fec5a82012-03-01 05:57:03 -0800163 self.archive_urls = {}
164 self.release_tag = None
Brian Harring76d1bf62012-06-01 13:52:48 -0700165 self.patch_pool = trybot_patch_pool.TrybotPatchPool()
Brian Harring3fec5a82012-03-01 05:57:03 -0800166
Ryan Cuie1e4e662012-05-21 16:39:46 -0700167 bs.BuilderStage.SetManifestBranch(self.options.branch)
Ryan Cuif7f24692012-05-18 16:35:33 -0700168
Brian Harring3fec5a82012-03-01 05:57:03 -0800169 def Initialize(self):
170 """Runs through the initialization steps of an actual build."""
Ryan Cuif7f24692012-05-18 16:35:33 -0700171 if self.options.resume:
172 results_lib.LoadCheckpoint(self.options.buildroot)
Brian Harring3fec5a82012-03-01 05:57:03 -0800173
Brian Harring3fec5a82012-03-01 05:57:03 -0800174 self._RunStage(stages.CleanUpStage)
175
176 def _GetStageInstance(self, stage, *args, **kwargs):
177 """Helper function to get an instance given the args.
178
David James944a48e2012-03-07 12:19:03 -0800179 Useful as almost all stages just take in options and build_config.
Brian Harring3fec5a82012-03-01 05:57:03 -0800180 """
David James944a48e2012-03-07 12:19:03 -0800181 config = kwargs.pop('config', self.build_config)
182 return stage(self.options, config, *args, **kwargs)
Brian Harring3fec5a82012-03-01 05:57:03 -0800183
184 def _SetReleaseTag(self):
185 """Sets the release tag from the manifest_manager.
186
187 Must be run after sync stage as syncing enables us to have a release tag.
188 """
189 # Extract version we have decided to build into self.release_tag.
190 manifest_manager = stages.ManifestVersionedSyncStage.manifest_manager
191 if manifest_manager:
192 self.release_tag = manifest_manager.current_version
193
194 def _RunStage(self, stage, *args, **kwargs):
195 """Wrapper to run a stage."""
196 stage_instance = self._GetStageInstance(stage, *args, **kwargs)
197 return stage_instance.Run()
198
199 def GetSyncInstance(self):
200 """Returns an instance of a SyncStage that should be run.
201
202 Subclasses must override this method.
203 """
204 raise NotImplementedError()
205
206 def RunStages(self):
207 """Subclasses must override this method. Runs the appropriate code."""
208 raise NotImplementedError()
209
Brian Harring3fec5a82012-03-01 05:57:03 -0800210 def _ShouldReExecuteInBuildRoot(self):
211 """Returns True if this build should be re-executed in the buildroot."""
212 abs_buildroot = os.path.abspath(self.options.buildroot)
213 return not os.path.abspath(__file__).startswith(abs_buildroot)
214
215 def _ReExecuteInBuildroot(self, sync_instance):
216 """Reexecutes self in buildroot and returns True if build succeeds.
217
218 This allows the buildbot code to test itself when changes are patched for
219 buildbot-related code. This is a no-op if the buildroot == buildroot
220 of the running chromite checkout.
221
222 Args:
223 sync_instance: Instance of the sync stage that was run to sync.
224
225 Returns:
226 True if the Build succeeded.
227 """
Brian Harring3fec5a82012-03-01 05:57:03 -0800228 if not self.options.resume:
Ryan Cuif7f24692012-05-18 16:35:33 -0700229 results_lib.WriteCheckpoint(self.options.buildroot)
Brian Harring3fec5a82012-03-01 05:57:03 -0800230
Brian Harring37e559b2012-05-22 20:47:32 -0700231 # Get the re-exec API version of the target chromite; if it's incompatible
232 # with us, bail now.
Brian Harring1b8c4c82012-05-29 23:03:04 -0700233 api = cros_build_lib.RunCommandCaptureOutput(
Brian Harring37e559b2012-05-22 20:47:32 -0700234 [constants.PATH_TO_CBUILDBOT] + ['--reexec-api-version'],
235 cwd=self.options.buildroot, error_code_ok=True)
236 # If the command failed, then we're targeting a cbuildbot that lacks the
237 # option; assume 0:0 (ie, initial state).
238 major, minor = 0, 0
239 if api.returncode == 0:
240 major, minor = map(int, api.output.strip().split('.', 1))
241
242 if major != _REEXEC_API_MAJOR:
Brian Harring1b8c4c82012-05-29 23:03:04 -0700243 cros_build_lib.Die(
Brian Harring37e559b2012-05-22 20:47:32 -0700244 'The targeted version of chromite in buildroot %s requires '
245 'api version %i, but we are api version %i. We cannot proceed.'
246 % (self.options.buildroot, major, _REEXEC_API_MAJOR))
247
Brian Harring3fec5a82012-03-01 05:57:03 -0800248 # Re-write paths to use absolute paths.
249 # Suppress any timeout options given from the commandline in the
250 # invoked cbuildbot; our timeout will enforce it instead.
Brian Harringf11bf682012-05-14 15:53:43 -0700251 args_to_append = ['--resume', '--timeout', '0', '--notee', '--nocgroups',
252 '--buildroot', os.path.abspath(self.options.buildroot)]
Brian Harring3fec5a82012-03-01 05:57:03 -0800253
254 if self.options.chrome_root:
255 args_to_append += ['--chrome_root',
256 os.path.abspath(self.options.chrome_root)]
257
258 if stages.ManifestVersionedSyncStage.manifest_manager:
259 ver = stages.ManifestVersionedSyncStage.manifest_manager.current_version
260 args_to_append += ['--version', ver]
261
262 if isinstance(sync_instance, stages.CommitQueueSyncStage):
263 vp_file = sync_instance.SaveValidationPool()
264 args_to_append += ['--validation_pool', vp_file]
265
266 # Re-run the command in the buildroot.
267 # Finally, be generous and give the invoked cbuildbot 30s to shutdown
268 # when something occurs. It should exit quicker, but the sigterm may
269 # hit while the system is particularly busy.
Brian Harring1b8c4c82012-05-29 23:03:04 -0700270 return_obj = cros_build_lib.RunCommand(
Ryan Cuif7f24692012-05-18 16:35:33 -0700271 [constants.PATH_TO_CBUILDBOT] + sys.argv[1:] + args_to_append,
Brian Harring3fec5a82012-03-01 05:57:03 -0800272 cwd=self.options.buildroot, error_code_ok=True, kill_timeout=30)
273 return return_obj.returncode == 0
274
Ryan Cuif7f24692012-05-18 16:35:33 -0700275 def _InitializeTrybotPatchPool(self):
276 """Generate patch pool from patches specified on the command line.
277
278 Do this only if we need to patch changes later on.
279 """
280 changes_stage = stages.PatchChangesStage.StageNamePrefix()
281 check_func = results_lib.Results.PreviouslyCompletedRecord
282 if not check_func(changes_stage) or self.options.bootstrap:
Ryan Cuie1e4e662012-05-21 16:39:46 -0700283 self.patch_pool = AcquirePoolFromOptions(self.options)
Ryan Cuif7f24692012-05-18 16:35:33 -0700284
285 def _GetBootstrapStage(self):
286 """Constructs and returns the BootStrapStage object.
287
288 We return None when there are no chromite patches to test, and
289 --test-bootstrap wasn't passed in.
290 """
291 stage = None
292 chromite_pool = self.patch_pool.Filter(project=constants.CHROMITE_PROJECT)
Chris Sosa126103a2012-06-18 09:03:17 -0700293 chromite_branch = cros_build_lib.GetChromiteTrackingBranch()
Ryan Cuie1e4e662012-05-21 16:39:46 -0700294 if (chromite_pool or self.options.test_bootstrap
295 or chromite_branch != self.options.branch):
Ryan Cuif7f24692012-05-18 16:35:33 -0700296 stage = stages.BootstrapStage(self.options, self.build_config,
297 chromite_pool)
298 return stage
299
Brian Harring3fec5a82012-03-01 05:57:03 -0800300 def Run(self):
Ryan Cuif7f24692012-05-18 16:35:33 -0700301 """Main runner for this builder class. Runs build and prints summary.
302
303 Returns:
304 Whether the build succeeded.
305 """
306 self._InitializeTrybotPatchPool()
307
308 if self.options.bootstrap:
309 bootstrap_stage = self._GetBootstrapStage()
310 if bootstrap_stage:
311 # BootstrapStage blocks on re-execution of cbuildbot.
312 bootstrap_stage.Run()
313 return bootstrap_stage.returncode == 0
314
Brian Harring3fec5a82012-03-01 05:57:03 -0800315 print_report = True
David James3d4d3502012-04-09 15:12:06 -0700316 exception_thrown = False
Brian Harring3fec5a82012-03-01 05:57:03 -0800317 success = True
318 try:
319 self.Initialize()
320 sync_instance = self.GetSyncInstance()
321 sync_instance.Run()
322 self._SetReleaseTag()
323
Ryan Cui16d9e1f2012-05-11 10:50:18 -0700324 if self.patch_pool:
325 self._RunStage(stages.PatchChangesStage, self.patch_pool)
Brian Harring3fec5a82012-03-01 05:57:03 -0800326
327 if self._ShouldReExecuteInBuildRoot():
328 print_report = False
329 success = self._ReExecuteInBuildroot(sync_instance)
330 else:
331 self.RunStages()
David James7fbf2d42012-07-14 18:23:49 -0700332 except results_lib.StepFailure:
333 # StepFailure exceptions are already recorded in the report, so there
334 # is no need to print these tracebacks twice.
335 exception_thrown = True
336 if not print_report:
337 raise
David James3d4d3502012-04-09 15:12:06 -0700338 except Exception:
339 exception_thrown = True
340 raise
Brian Harring3fec5a82012-03-01 05:57:03 -0800341 finally:
342 if print_report:
Ryan Cuif7f24692012-05-18 16:35:33 -0700343 results_lib.WriteCheckpoint(self.options.buildroot)
Brian Harring3fec5a82012-03-01 05:57:03 -0800344 print '\n\n\n@@@BUILD_STEP Report@@@\n'
345 results_lib.Results.Report(sys.stdout, self.archive_urls,
346 self.release_tag)
347 success = results_lib.Results.BuildSucceededSoFar()
David James3d4d3502012-04-09 15:12:06 -0700348 if exception_thrown and success:
349 success = False
David Jamesbb20ac82012-07-18 10:59:16 -0700350 cros_build_lib.PrintBuildbotStepWarnings()
351 print """\
David James3d4d3502012-04-09 15:12:06 -0700352Exception thrown, but all stages marked successful. This is an internal error,
353because the stage that threw the exception should be marked as failing."""
Brian Harring3fec5a82012-03-01 05:57:03 -0800354
355 return success
356
357
358class SimpleBuilder(Builder):
359 """Builder that performs basic vetting operations."""
360
361 def GetSyncInstance(self):
362 """Sync to lkgm or TOT as necessary.
363
364 Returns: the instance of the sync stage that was run.
365 """
366 if self.options.lkgm or self.build_config['use_lkgm']:
367 sync_stage = self._GetStageInstance(stages.LKGMSyncStage)
368 else:
369 sync_stage = self._GetStageInstance(stages.SyncStage)
370
371 return sync_stage
372
David James58e0c092012-03-04 20:31:12 -0800373 def _RunBackgroundStagesForBoard(self, board):
374 """Run background board-specific stages for the specified board."""
David James58e0c092012-03-04 20:31:12 -0800375 archive_stage = self.archive_stages[board]
David James944a48e2012-03-07 12:19:03 -0800376 configs = self.build_config['board_specific_configs']
377 config = configs.get(board, self.build_config)
378 stage_list = [[stages.VMTestStage, board, archive_stage],
379 [stages.ChromeTestStage, board, archive_stage],
380 [stages.UnitTestStage, board],
Chris Sosa6a5dceb2012-05-14 13:48:56 -0700381 [stages.UploadPrebuiltsStage, board, archive_stage]]
Brian Harring3fec5a82012-03-01 05:57:03 -0800382
David James58e0c092012-03-04 20:31:12 -0800383 # We can not run hw tests without archiving the payloads.
384 if self.options.archive:
David James944a48e2012-03-07 12:19:03 -0800385 for suite in config['hw_tests']:
Chris Sosa57dca2a2012-06-25 15:09:59 -0700386 if cbuildbot_config.IsCQType(config['build_type']):
387 stage_list.append([stages.PaladinHWTestStage, board, archive_stage,
388 suite])
389 else:
390 stage_list.append([stages.HWTestStage, board, archive_stage, suite])
Chris Sosab50dc932012-03-01 14:00:58 -0800391
Chris Sosa817b1f92012-07-19 15:00:23 -0700392 for suite in config['async_hw_tests']:
393 stage_list.append([stages.ASyncHWTestStage, board, archive_stage,
394 suite])
395
David James944a48e2012-03-07 12:19:03 -0800396 steps = [self._GetStageInstance(*x, config=config).Run for x in stage_list]
397 background.RunParallelSteps(steps + [archive_stage.Run])
Brian Harring3fec5a82012-03-01 05:57:03 -0800398
399 def RunStages(self):
400 """Runs through build process."""
401 self._RunStage(stages.BuildBoardStage)
402
403 # TODO(sosa): Split these out into classes.
Brian Harring3fec5a82012-03-01 05:57:03 -0800404 if self.build_config['build_type'] == constants.CHROOT_BUILDER_TYPE:
405 self._RunStage(stages.SDKTestStage)
406 self._RunStage(stages.UploadPrebuiltsStage,
Chris Sosa6a5dceb2012-05-14 13:48:56 -0700407 constants.CHROOT_BUILDER_BOARD, None)
Brian Harring3fec5a82012-03-01 05:57:03 -0800408 elif self.build_config['build_type'] == constants.REFRESH_PACKAGES_TYPE:
409 self._RunStage(stages.RefreshPackageStatusStage)
410 else:
411 self._RunStage(stages.UprevStage)
Brian Harring3fec5a82012-03-01 05:57:03 -0800412
David James944a48e2012-03-07 12:19:03 -0800413 configs = self.build_config['board_specific_configs']
David James58e0c092012-03-04 20:31:12 -0800414 for board in self.build_config['boards']:
David James944a48e2012-03-07 12:19:03 -0800415 config = configs.get(board, self.build_config)
416 archive_stage = self._GetStageInstance(stages.ArchiveStage, board,
417 config=config)
David James58e0c092012-03-04 20:31:12 -0800418 self.archive_stages[board] = archive_stage
419
David James944a48e2012-03-07 12:19:03 -0800420 # Set up a process pool to run test/archive stages in the background.
421 # This process runs task(board) for each board added to the queue.
David James58e0c092012-03-04 20:31:12 -0800422 queue = multiprocessing.Queue()
423 task = self._RunBackgroundStagesForBoard
424 with background.BackgroundTaskRunner(queue, task):
David James944a48e2012-03-07 12:19:03 -0800425 for board in self.build_config['boards']:
David James58e0c092012-03-04 20:31:12 -0800426 # Run BuildTarget in the foreground.
David James944a48e2012-03-07 12:19:03 -0800427 archive_stage = self.archive_stages[board]
428 config = configs.get(board, self.build_config)
429 self._RunStage(stages.BuildTargetStage, board, archive_stage,
Chris Sosa1a87b3e2012-04-12 13:20:42 -0700430 self.release_tag, config=config)
David James58e0c092012-03-04 20:31:12 -0800431 self.archive_urls[board] = archive_stage.GetDownloadUrl()
432
David James944a48e2012-03-07 12:19:03 -0800433 # Kick off task(board) in the background.
David James58e0c092012-03-04 20:31:12 -0800434 queue.put([board])
435
Brian Harring3fec5a82012-03-01 05:57:03 -0800436
437class DistributedBuilder(SimpleBuilder):
438 """Build class that has special logic to handle distributed builds.
439
440 These builds sync using git/manifest logic in manifest_versions. In general
441 they use a non-distributed builder code for the bulk of the work.
442 """
Ryan Cuif7f24692012-05-18 16:35:33 -0700443 def __init__(self, *args, **kwargs):
Brian Harring3fec5a82012-03-01 05:57:03 -0800444 """Initializes a buildbot builder.
445
446 Extra variables:
447 completion_stage_class: Stage used to complete a build. Set in the Sync
448 stage.
449 """
Ryan Cuif7f24692012-05-18 16:35:33 -0700450 super(DistributedBuilder, self).__init__(*args, **kwargs)
Brian Harring3fec5a82012-03-01 05:57:03 -0800451 self.completion_stage_class = None
452
453 def GetSyncInstance(self):
454 """Syncs the tree using one of the distributed sync logic paths.
455
456 Returns: the instance of the sync stage that was run.
457 """
458 # Determine sync class to use. CQ overrides PFQ bits so should check it
459 # first.
460 if cbuildbot_config.IsCQType(self.build_config['build_type']):
461 sync_stage = self._GetStageInstance(stages.CommitQueueSyncStage)
462 self.completion_stage_class = stages.CommitQueueCompletionStage
463 elif cbuildbot_config.IsPFQType(self.build_config['build_type']):
464 sync_stage = self._GetStageInstance(stages.LKGMCandidateSyncStage)
465 self.completion_stage_class = stages.LKGMCandidateSyncCompletionStage
466 else:
467 sync_stage = self._GetStageInstance(stages.ManifestVersionedSyncStage)
468 self.completion_stage_class = stages.ManifestVersionedSyncCompletionStage
469
470 return sync_stage
471
472 def Publish(self, was_build_successful):
473 """Completes build by publishing any required information."""
474 completion_stage = self._GetStageInstance(self.completion_stage_class,
475 was_build_successful)
476 completion_stage.Run()
477 name = completion_stage.name
478 if not results_lib.Results.WasStageSuccessful(name):
479 should_publish_changes = False
480 else:
481 should_publish_changes = (self.build_config['master'] and
482 was_build_successful)
483
484 if should_publish_changes:
485 self._RunStage(stages.PublishUprevChangesStage)
486
487 def RunStages(self):
488 """Runs simple builder logic and publishes information to overlays."""
489 was_build_successful = False
490 try:
David Jamesf55709e2012-03-13 09:10:15 -0700491 super(DistributedBuilder, self).RunStages()
492 was_build_successful = results_lib.Results.BuildSucceededSoFar()
Brian Harring3fec5a82012-03-01 05:57:03 -0800493 except SystemExit as ex:
494 # If a stage calls sys.exit(0), it's exiting with success, so that means
495 # we should mark ourselves as successful.
496 if ex.code == 0:
497 was_build_successful = True
498 raise
499 finally:
500 self.Publish(was_build_successful)
501
Brian Harring3fec5a82012-03-01 05:57:03 -0800502
503def _ConfirmBuildRoot(buildroot):
504 """Confirm with user the inferred buildroot, and mark it as confirmed."""
505 warning = 'Using default directory %s as buildroot' % buildroot
Brian Harring1b8c4c82012-05-29 23:03:04 -0700506 response = cros_build_lib.YesNoPrompt(
507 default=cros_build_lib.NO, warning=warning, full=True)
508 if response == cros_build_lib.NO:
Brian Harring3fec5a82012-03-01 05:57:03 -0800509 print('Please specify a buildroot with the --buildroot option.')
510 sys.exit(0)
511
512 if not os.path.exists(buildroot):
513 os.mkdir(buildroot)
514
515 repository.CreateTrybotMarker(buildroot)
516
517
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700518def _ConfirmRemoteBuildbotRun():
519 """Confirm user wants to run with --buildbot --remote."""
520 warning = ('You are about to launch a PRODUCTION job! This is *NOT* a '
521 'trybot run! Are you sure?')
Brian Harring1b8c4c82012-05-29 23:03:04 -0700522 response = cros_build_lib.YesNoPrompt(
523 default=cros_build_lib.NO, warning=warning, full=True)
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700524
Brian Harring1b8c4c82012-05-29 23:03:04 -0700525 if response == cros_build_lib.NO:
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700526 print('Please specify --pass-through="--debug".')
527 sys.exit(0)
528
529
Ryan Cui5ba7e152012-05-10 14:36:52 -0700530def _DetermineDefaultBuildRoot(sourceroot, internal_build):
Brian Harring3fec5a82012-03-01 05:57:03 -0800531 """Default buildroot to be under the directory that contains current checkout.
532
533 Arguments:
534 internal_build: Whether the build is an internal build
Ryan Cui5ba7e152012-05-10 14:36:52 -0700535 sourceroot: Use specified sourceroot.
Brian Harring3fec5a82012-03-01 05:57:03 -0800536 """
Ryan Cui5ba7e152012-05-10 14:36:52 -0700537 if not repository.IsARepoRoot(sourceroot):
Brian Harring1b8c4c82012-05-29 23:03:04 -0700538 cros_build_lib.Die(
539 'Could not find root of local checkout at %s. Please specify '
540 'using the --sourceroot option.' % sourceroot)
Brian Harring3fec5a82012-03-01 05:57:03 -0800541
542 # Place trybot buildroot under the directory containing current checkout.
Ryan Cui5ba7e152012-05-10 14:36:52 -0700543 top_level = os.path.dirname(os.path.realpath(sourceroot))
Brian Harring3fec5a82012-03-01 05:57:03 -0800544 if internal_build:
545 buildroot = os.path.join(top_level, _DEFAULT_INT_BUILDROOT)
546 else:
547 buildroot = os.path.join(top_level, _DEFAULT_EXT_BUILDROOT)
548
549 return buildroot
550
551
552def _BackupPreviousLog(log_file, backup_limit=25):
553 """Rename previous log.
554
555 Args:
556 log_file: The absolute path to the previous log.
557 """
558 if os.path.exists(log_file):
559 old_logs = sorted(glob.glob(log_file + '.*'),
560 key=distutils.version.LooseVersion)
561
562 if len(old_logs) >= backup_limit:
563 os.remove(old_logs[0])
564
565 last = 0
566 if old_logs:
567 last = int(old_logs.pop().rpartition('.')[2])
568
569 os.rename(log_file, log_file + '.' + str(last + 1))
570
David James944a48e2012-03-07 12:19:03 -0800571def _RunBuildStagesWrapper(options, build_config):
Brian Harring3fec5a82012-03-01 05:57:03 -0800572 """Helper function that wraps RunBuildStages()."""
573 def IsDistributedBuilder():
574 """Determines whether the build_config should be a DistributedBuilder."""
575 if not options.buildbot:
576 return False
577 elif build_config['build_type'] in _DISTRIBUTED_TYPES:
578 chrome_rev = build_config['chrome_rev']
579 if options.chrome_rev: chrome_rev = options.chrome_rev
580 # We don't do distributed logic to TOT Chrome PFQ's, nor local
581 # chrome roots (e.g. chrome try bots)
582 if chrome_rev not in [constants.CHROME_REV_TOT,
583 constants.CHROME_REV_LOCAL,
584 constants.CHROME_REV_SPEC]:
585 return True
586
587 return False
588
Brian Harring1b8c4c82012-05-29 23:03:04 -0700589 cros_build_lib.Info("cbuildbot executed with args %s"
590 % ' '.join(map(repr, sys.argv)))
Brian Harring3fec5a82012-03-01 05:57:03 -0800591
Ryan Cuif7f24692012-05-18 16:35:33 -0700592 target = DistributedBuilder if IsDistributedBuilder() else SimpleBuilder
Ryan Cuie1e4e662012-05-21 16:39:46 -0700593 buildbot = target(options, build_config)
Brian Harringd166aaf2012-05-14 18:31:53 -0700594 if not buildbot.Run():
595 sys.exit(1)
Brian Harring3fec5a82012-03-01 05:57:03 -0800596
597
598# Parser related functions
Ryan Cui5ba7e152012-05-10 14:36:52 -0700599def _CheckLocalPatches(sourceroot, local_patches):
Brian Harring3fec5a82012-03-01 05:57:03 -0800600 """Do an early quick check of the passed-in patches.
601
602 If the branch of a project is not specified we append the current branch the
603 project is on.
Ryan Cui5ba7e152012-05-10 14:36:52 -0700604
605 Args:
606 sourceroot: The checkout where patches are coming from.
Brian Harring3fec5a82012-03-01 05:57:03 -0800607 """
Ryan Cuicedd8a52012-03-22 02:28:35 -0700608 verified_patches = []
Brian Harring1b8c4c82012-05-29 23:03:04 -0700609 manifest = cros_build_lib.ManifestCheckout.Cached(sourceroot)
Ryan Cuicedd8a52012-03-22 02:28:35 -0700610 for patch in local_patches:
Brian Harring3fec5a82012-03-01 05:57:03 -0800611 components = patch.split(':')
612 if len(components) > 2:
Brian Harring1b8c4c82012-05-29 23:03:04 -0700613 cros_build_lib.Die(
614 'Specify local patches in project[:branch] format. Got %s' % patch)
Brian Harring3fec5a82012-03-01 05:57:03 -0800615
616 # validate project
617 project = components[0]
Brian Harring3fec5a82012-03-01 05:57:03 -0800618
Brian Harring609dc4e2012-05-07 02:17:44 -0700619 try:
620 project_dir = manifest.GetProjectPath(project, True)
621 except KeyError:
Brian Harring1b8c4c82012-05-29 23:03:04 -0700622 cros_build_lib.Die('Project %s does not exist.' % project)
Brian Harring3fec5a82012-03-01 05:57:03 -0800623
624 # If no branch was specified, we use the project's current branch.
625 if len(components) == 1:
Brian Harring1b8c4c82012-05-29 23:03:04 -0700626 branch = cros_build_lib.GetCurrentBranch(project_dir)
Brian Harring3fec5a82012-03-01 05:57:03 -0800627 if not branch:
Brian Harring1b8c4c82012-05-29 23:03:04 -0700628 cros_build_lib.Die('Project %s is not on a branch!' % project)
Brian Harring3fec5a82012-03-01 05:57:03 -0800629 else:
630 branch = components[1]
Brian Harring1b8c4c82012-05-29 23:03:04 -0700631 if not cros_build_lib.DoesLocalBranchExist(project_dir, branch):
632 cros_build_lib.Die('Project %s does not have branch %s'
633 % (project, branch))
Brian Harring3fec5a82012-03-01 05:57:03 -0800634
Brian Harring609dc4e2012-05-07 02:17:44 -0700635 verified_patches.append('%s:%s' % (project, branch))
Brian Harring3fec5a82012-03-01 05:57:03 -0800636
Ryan Cuicedd8a52012-03-22 02:28:35 -0700637 return verified_patches
Brian Harring3fec5a82012-03-01 05:57:03 -0800638
639
Brian Harring3fec5a82012-03-01 05:57:03 -0800640def _CheckChromeVersionOption(_option, _opt_str, value, parser):
641 """Upgrade other options based on chrome_version being passed."""
642 value = value.strip()
643
644 if parser.values.chrome_rev is None and value:
645 parser.values.chrome_rev = constants.CHROME_REV_SPEC
646
647 parser.values.chrome_version = value
648
649
650def _CheckChromeRootOption(_option, _opt_str, value, parser):
651 """Validate and convert chrome_root to full-path form."""
Brian Harring3fec5a82012-03-01 05:57:03 -0800652 if parser.values.chrome_rev is None:
653 parser.values.chrome_rev = constants.CHROME_REV_LOCAL
654
Ryan Cui5ba7e152012-05-10 14:36:52 -0700655 parser.values.chrome_root = value
Brian Harring3fec5a82012-03-01 05:57:03 -0800656
657
658def _CheckChromeRevOption(_option, _opt_str, value, parser):
659 """Validate the chrome_rev option."""
660 value = value.strip()
661 if value not in constants.VALID_CHROME_REVISIONS:
662 raise optparse.OptionValueError('Invalid chrome rev specified')
663
664 parser.values.chrome_rev = value
665
666
Ryan Cuif37608e2012-07-10 14:28:48 -0700667def _CheckGerritChromeOption(_option, _opt_str, value, parser):
668 """Validate the chrome_rev option."""
669 if parser.values.chrome_rev is None:
670 parser.values.chrome_rev = constants.CHROME_REV_TOT
671
672 parser.values.gerrit_chrome = True
673
674
Ryan Cui5ba7e152012-05-10 14:36:52 -0700675class CustomParser(optparse.OptionParser):
676 def add_remote_option(self, *args, **kwargs):
677 """For arguments that are passed-through to remote trybot."""
678 return optparse.OptionParser.add_option(self, *args,
679 remote_pass_through=True,
680 **kwargs)
681
682
683class CustomGroup(optparse.OptionGroup):
684 def add_remote_option(self, *args, **kwargs):
685 """For arguments that are passed-through to remote trybot."""
686 return optparse.OptionGroup.add_option(self, *args,
687 remote_pass_through=True,
688 **kwargs)
689
690
Ryan Cuif7f24692012-05-18 16:35:33 -0700691# pylint: disable=W0613
Ryan Cui5ba7e152012-05-10 14:36:52 -0700692def check_path(option, opt, value):
693 """Expand paths and make them absolute."""
694 expanded = osutils.ExpandPath(value)
695 if expanded == '/':
696 raise optparse.OptionValueError('Invalid path %s specified for %s'
697 % (expanded, opt))
698
699 return expanded
700
Ryan Cui6196fc22012-06-27 17:52:18 -0700701# pylint: disable=W0613
702def check_gs_path(option, opt, value):
703 """Expand paths and make them absolute."""
704 value = value.strip().rstrip('/')
705 if not value.startswith('gs://'):
706 raise optparse.OptionValueError('Invalid gs path %s specified for %s'
707 % (value, opt))
708
709 return value
710
Ryan Cui5ba7e152012-05-10 14:36:52 -0700711
712class CustomOption(optparse.Option):
713 """Subclass Option class to implement pass-through and path evaluation."""
Ryan Cui6196fc22012-06-27 17:52:18 -0700714 TYPES = optparse.Option.TYPES + ('path', 'gs_path')
Ryan Cui5ba7e152012-05-10 14:36:52 -0700715 TYPE_CHECKER = optparse.Option.TYPE_CHECKER.copy()
716 TYPE_CHECKER['path'] = check_path
Ryan Cui6196fc22012-06-27 17:52:18 -0700717 TYPE_CHECKER['gs_path'] = check_gs_path
Ryan Cui5ba7e152012-05-10 14:36:52 -0700718
Ryan Cui79319ab2012-05-21 12:59:18 -0700719 ACTIONS = optparse.Option.ACTIONS + ('extend',)
720 STORE_ACTIONS = optparse.Option.STORE_ACTIONS + ('extend',)
721 TYPED_ACTIONS = optparse.Option.TYPED_ACTIONS + ('extend',)
722 ALWAYS_TYPED_ACTIONS = optparse.Option.ALWAYS_TYPED_ACTIONS + ('extend',)
723
Ryan Cui5ba7e152012-05-10 14:36:52 -0700724 def __init__(self, *args, **kwargs):
725 # The remote_pass_through argument specifies whether we should directly
726 # pass the argument (with its value) onto the remote trybot.
727 self.pass_through = kwargs.pop('remote_pass_through', False)
728 optparse.Option.__init__(self, *args, **kwargs)
729
730 def take_action(self, action, dest, opt, value, values, parser):
Ryan Cui79319ab2012-05-21 12:59:18 -0700731 if action == 'extend':
Mike Frysingerd6925b52012-07-16 16:11:00 -0400732 # If there is extra spaces between each argument, we get '' which later
733 # code barfs on, so skip those. e.g. We see this with the forms:
734 # cbuildbot -p 'proj:branch ' ...
735 # cbuildbot -p ' proj:branch' ...
736 # cbuildbot -p 'proj:branch proj2:branch' ...
737 lvalue = value.split()
Ryan Cui79319ab2012-05-21 12:59:18 -0700738 values.ensure_value(dest, []).extend(lvalue)
739 else:
740 optparse.Option.take_action(self, action, dest, opt, value, values,
741 parser)
742
Ryan Cui5ba7e152012-05-10 14:36:52 -0700743 if self.pass_through:
744 parser.values.pass_through_args.append(opt)
745 if self.nargs and self.nargs > 1:
746 # value is a tuple if nargs > 1
747 string_list = [str(val) for val in list(value)]
748 parser.values.pass_through_args.extend(string_list)
749 elif value:
750 parser.values.pass_through_args.append(str(value))
751
752
Brian Harring3fec5a82012-03-01 05:57:03 -0800753def _CreateParser():
Ryan Cui16d9e1f2012-05-11 10:50:18 -0700754 """Generate and return the parser with all the options."""
Brian Harring3fec5a82012-03-01 05:57:03 -0800755 # Parse options
756 usage = "usage: %prog [options] buildbot_config"
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700757 parser = CustomParser(usage=usage, option_class=CustomOption)
Brian Harring3fec5a82012-03-01 05:57:03 -0800758
759 # Main options
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700760 # The remote_pass_through parameter to add_option is implemented by the
761 # CustomOption class. See CustomOption for more information.
Brian Harring3fec5a82012-03-01 05:57:03 -0800762 parser.add_option('-a', '--all', action='store_true', dest='print_all',
763 default=False,
764 help=('List all of the buildbot configs available. Use '
765 'with the --list option'))
Ryan Cuie1e4e662012-05-21 16:39:46 -0700766 parser.add_remote_option('-b', '--branch',
767 help='The manifest branch to test. The branch to '
768 'check the buildroot out to.')
Ryan Cui5ba7e152012-05-10 14:36:52 -0700769 parser.add_option('-r', '--buildroot', dest='buildroot', type='path',
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700770 help='Root directory where source is checked out to, and '
771 'where the build occurs. For external build configs, '
772 "defaults to 'trybot' directory at top level of your "
773 'repo-managed checkout.')
774 parser.add_remote_option('--chrome_rev', default=None, type='string',
775 action='callback', dest='chrome_rev',
776 callback=_CheckChromeRevOption,
777 help=('Revision of Chrome to use, of type [%s]'
778 % '|'.join(constants.VALID_CHROME_REVISIONS)))
Ryan Cui79319ab2012-05-21 12:59:18 -0700779 parser.add_remote_option('-g', '--gerrit-patches', action='extend',
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700780 default=[], type='string',
781 metavar="'Id1 *int_Id2...IdN'",
782 help=("Space-separated list of short-form Gerrit "
783 "Change-Id's or change numbers to patch. "
784 "Please prepend '*' to internal Change-Id's"))
Brian Harring3fec5a82012-03-01 05:57:03 -0800785 parser.add_option('-l', '--list', action='store_true', dest='list',
786 default=False,
787 help=('List the suggested trybot configs to use. Use '
788 '--all to list all of the available configs.'))
Ryan Cui54da0702012-04-19 18:38:08 -0700789 parser.add_option('--local', default=False, action='store_true',
790 help=('Specifies that this tryjob should be run locally.'))
Ryan Cui79319ab2012-05-21 12:59:18 -0700791 parser.add_option('-p', '--local-patches', action='extend', default=[],
Brian Harring3fec5a82012-03-01 05:57:03 -0800792 metavar="'<project1>[:<branch1>]...<projectN>[:<branchN>]'",
793 help=('Space-separated list of project branches with '
794 'patches to apply. Projects are specified by name. '
795 'If no branch is specified the current branch of the '
796 'project will be used.'))
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700797 parser.add_remote_option('--profile', default=None, type='string',
798 action='store', dest='profile',
799 help='Name of profile to sub-specify board variant.')
Brian Harring3fec5a82012-03-01 05:57:03 -0800800 parser.add_option('--remote', default=False, action='store_true',
Brian Harring3fec5a82012-03-01 05:57:03 -0800801 help=('Specifies that this tryjob should be run remotely.'))
Brian Harring219a2b82012-07-18 15:30:12 -0700802 parser.add_option('--remote-description', default=None,
803 help=('Attach an optional description to a --remote run '
804 'to make it easier to identify the results when it '
805 'finishes.'))
Brian Harring3fec5a82012-03-01 05:57:03 -0800806
Ryan Cuif4f84be2012-07-09 18:50:41 -0700807 #
Brian Harring3fec5a82012-03-01 05:57:03 -0800808 # Advanced options
Ryan Cuif4f84be2012-07-09 18:50:41 -0700809 #
810
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700811 group = CustomGroup(
Brian Harring3fec5a82012-03-01 05:57:03 -0800812 parser,
813 'Advanced Options',
814 'Caution: use these options at your own risk.')
815
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700816 group.add_remote_option('--buildbot', dest='buildbot', action='store_true',
817 default=False, help='This is running on a buildbot')
818 group.add_remote_option('--buildnumber', help='build number', type='int',
819 default=0)
Ryan Cui5ba7e152012-05-10 14:36:52 -0700820 group.add_option('--chrome_root', default=None, type='path',
821 action='callback', callback=_CheckChromeRootOption,
822 dest='chrome_root', help='Local checkout of Chrome to use.')
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700823 group.add_remote_option('--chrome_version', default=None, type='string',
824 action='callback', dest='chrome_version',
825 callback=_CheckChromeVersionOption,
826 help='Used with SPEC logic to force a particular SVN '
827 'revision of chrome rather than the latest.')
828 group.add_remote_option('--clobber', action='store_true', dest='clobber',
829 default=False,
830 help='Clears an old checkout before syncing')
Yu-Ju Hong52134292012-06-28 12:50:42 -0700831 group.add_remote_option('--hwtest', dest='hwtest', action='store_true',
832 default=False,
833 help='This adds HW test for remote trybot')
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700834 group.add_remote_option('--lkgm', action='store_true', dest='lkgm',
835 default=False,
836 help='Sync to last known good manifest blessed by '
837 'PFQ')
Ryan Cui5ba7e152012-05-10 14:36:52 -0700838 parser.add_option('--log_dir', dest='log_dir', type='path',
Brian Harring3fec5a82012-03-01 05:57:03 -0800839 help=('Directory where logs are stored.'))
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700840 group.add_remote_option('--maxarchives', dest='max_archive_builds',
841 default=3, type='int',
842 help="Change the local saved build count limit.")
843 group.add_remote_option('--noarchive', action='store_false', dest='archive',
844 default=True, help="Don't run archive stage.")
Ryan Cuif7f24692012-05-18 16:35:33 -0700845 group.add_remote_option('--nobootstrap', action='store_false',
846 dest='bootstrap', default=True,
847 help="Don't checkout and run from a standalone "
848 "chromite repo.")
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700849 group.add_remote_option('--nobuild', action='store_false', dest='build',
850 default=True,
851 help="Don't actually build (for cbuildbot dev)")
852 group.add_remote_option('--noclean', action='store_false', dest='clean',
853 default=True, help="Don't clean the buildroot")
Ryan Cuif7f24692012-05-18 16:35:33 -0700854 group.add_remote_option('--nocgroups', action='store_false', dest='cgroups',
855 default=True,
856 help='Disable cbuildbots usage of cgroups.')
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700857 group.add_remote_option('--noprebuilts', action='store_false',
858 dest='prebuilts', default=True,
859 help="Don't upload prebuilts.")
860 group.add_remote_option('--nosync', action='store_false', dest='sync',
861 default=True, help="Don't sync before building.")
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700862 group.add_remote_option('--notests', action='store_false', dest='tests',
863 default=True,
864 help='Override values from buildconfig and run no '
865 'tests.')
866 group.add_remote_option('--nouprev', action='store_false', dest='uprev',
867 default=True,
868 help='Override values from buildconfig and never '
869 'uprev.')
Brian Harring3fec5a82012-03-01 05:57:03 -0800870 group.add_option('--reference-repo', action='store', default=None,
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700871 dest='reference_repo',
872 help='Reuse git data stored in an existing repo '
873 'checkout. This can drastically reduce the network '
874 'time spent setting up the trybot checkout. By '
875 "default, if this option isn't given but cbuildbot "
876 'is invoked from a repo checkout, cbuildbot will '
877 'use the repo root.')
Ryan Cuicedd8a52012-03-22 02:28:35 -0700878 group.add_option('--resume', action='store_true', default=False,
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700879 help='Skip stages already successfully completed.')
880 group.add_remote_option('--timeout', action='store', type='int', default=0,
881 help='Specify the maximum amount of time this job '
882 'can run for, at which point the build will be '
883 'aborted. If set to zero, then there is no '
884 'timeout.')
Ryan Cui39bdbbf2012-02-29 16:15:39 -0800885 group.add_option('--test-tryjob', action='store_true',
886 default=False,
887 help='Submit a tryjob to the test repository. Will not '
888 'show up on the production trybot waterfall.')
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700889 group.add_remote_option('--validation_pool', default=None,
890 help='Path to a pickled validation pool. Intended '
891 'for use only with the commit queue.')
892 group.add_remote_option('--version', dest='force_version', default=None,
893 help='Used with manifest logic. Forces use of this '
894 'version rather than create or get latest.')
Brian Harringab8fb5c2012-07-18 11:28:22 -0700895 group.add_remote_option('--cq-gerrit-query', dest='cq_gerrit_override',
896 default=None,
897 help=
898 "If given, this gerrit query will be used to find what patches to test, "
899 "rather than the normal 'CommitReady=2 AND Verified=1 AND CodeReview=2' "
900 "query it defaults to. Use with care- note additionally this setting "
901 "only has an effect if the buildbot target is a cq target, and we're "
902 "in buildbot mode.")
Brian Harring3fec5a82012-03-01 05:57:03 -0800903
904 parser.add_option_group(group)
905
Ryan Cuif4f84be2012-07-09 18:50:41 -0700906 #
907 # Hidden options.
908 #
909
910 # The base GS URL (gs://<bucket_name>/<path>) to archive artifacts to.
911 parser.add_remote_option('--archive-base', type='gs_path',
912 help=optparse.SUPPRESS_HELP)
913 # bootstrap-args are not verified by the bootstrap code. It gets passed
914 # direcly to the bootstrap re-execution.
915 parser.add_remote_option('--bootstrap-args', action='append',
916 default=[], help=optparse.SUPPRESS_HELP)
Ryan Cuif37608e2012-07-10 14:28:48 -0700917 # Specify to use Gerrit Source for building Chrome. Implies
918 # --chrome_rev=CHROME_REV_TOT.
919 parser.add_option('--gerrit-chrome', action='callback', default=False,
920 callback=_CheckGerritChromeOption, dest='gerrit_chrome',
921 help=optparse.SUPPRESS_HELP)
Ryan Cuif4f84be2012-07-09 18:50:41 -0700922 parser.add_option('--pass-through', dest='pass_through_args', action='append',
923 type='string', default=[], help=optparse.SUPPRESS_HELP)
924 # Used for handling forwards/backwards compatibility for --resume and
925 # --bootstrap.
926 parser.add_option('--reexec-api-version', dest='output_api_version',
927 action='store_true', default=False,
928 help=optparse.SUPPRESS_HELP)
929 # Indicates this is running on a remote trybot machine.
930 parser.add_option('--remote-trybot', dest='remote_trybot',
931 action='store_true', default=False,
932 help=optparse.SUPPRESS_HELP)
933 # Patches uploaded by trybot client when run using the -p option.
934 parser.add_remote_option('--remote-patches', action='extend', default=[],
935 help=optparse.SUPPRESS_HELP)
936 # Specify specific remote tryslaves to run on.
937 parser.add_option('--slaves', action='extend', default=[],
938 help=optparse.SUPPRESS_HELP)
939 parser.add_option('--sourceroot', type='path', default=constants.SOURCE_ROOT,
940 help=optparse.SUPPRESS_HELP)
941 # Causes cbuildbot to bootstrap itself twice, in the sequence A->B->C.
942 # A(unpatched) patches and bootstraps B. B patches and bootstraps C.
943 parser.add_remote_option('--test-bootstrap', action='store_true',
944 default=False, help=optparse.SUPPRESS_HELP)
Brian Harringf611e6e2012-07-17 18:47:44 -0700945 # Note the default here needs to be hardcoded to 3; that is the last version
946 # that lacked this functionality.
947 # This is used so that cbuildbot when processing tryjobs from
948 # older chromite instances, we can use it for handling compatibility.
949 parser.add_option('--remote-version', default=3, type=int, action='store',
950 help=optparse.SUPPRESS_HELP)
Ryan Cuif4f84be2012-07-09 18:50:41 -0700951
952 #
Brian Harring3fec5a82012-03-01 05:57:03 -0800953 # Debug options
Ryan Cuif4f84be2012-07-09 18:50:41 -0700954 #
Ryan Cuieaa9efd2012-04-25 17:56:45 -0700955 group = CustomGroup(parser, "Debug Options")
Brian Harring3fec5a82012-03-01 05:57:03 -0800956
Ryan Cuia25d8eb2012-07-11 14:54:27 -0700957 group.add_remote_option('--debug', action='store_true', default=None,
958 help='Override some options to run as a developer.')
Brian Harring3fec5a82012-03-01 05:57:03 -0800959 group.add_option('--dump_config', action='store_true', dest='dump_config',
960 default=False,
961 help='Dump out build config options, and exit.')
962 group.add_option('--notee', action='store_false', dest='tee', default=True,
963 help="Disable logging and internal tee process. Primarily "
964 "used for debugging cbuildbot itself.")
965 parser.add_option_group(group)
966 return parser
967
968
Ryan Cui85867972012-02-23 18:21:49 -0800969def _FinishParsing(options, args):
970 """Perform some parsing tasks that need to take place after optparse.
971
972 This function needs to be easily testable! Keep it free of
973 environment-dependent code. Put more detailed usage validation in
974 _PostParseCheck().
Brian Harring3fec5a82012-03-01 05:57:03 -0800975
976 Args:
Ryan Cui85867972012-02-23 18:21:49 -0800977 options, args: The options/args object returned by optparse
Brian Harring3fec5a82012-03-01 05:57:03 -0800978 """
Brian Harring07039b52012-05-13 17:56:47 -0700979 # Setup logging levels first so any parsing triggered log messages
980 # are appropriately filtered.
981 logging.getLogger().setLevel(
982 logging.DEBUG if options.debug else logging.INFO)
983
Brian Harring3fec5a82012-03-01 05:57:03 -0800984 if options.chrome_root:
985 if options.chrome_rev != constants.CHROME_REV_LOCAL:
Brian Harring1b8c4c82012-05-29 23:03:04 -0700986 cros_build_lib.Die('Chrome rev must be %s if chrome_root is set.' %
987 constants.CHROME_REV_LOCAL)
Brian Harring3fec5a82012-03-01 05:57:03 -0800988 else:
989 if options.chrome_rev == constants.CHROME_REV_LOCAL:
Brian Harring1b8c4c82012-05-29 23:03:04 -0700990 cros_build_lib.Die('Chrome root must be set if chrome_rev is %s.' %
991 constants.CHROME_REV_LOCAL)
Brian Harring3fec5a82012-03-01 05:57:03 -0800992
993 if options.chrome_version:
994 if options.chrome_rev != constants.CHROME_REV_SPEC:
Brian Harring1b8c4c82012-05-29 23:03:04 -0700995 cros_build_lib.Die('Chrome rev must be %s if chrome_version is set.' %
996 constants.CHROME_REV_SPEC)
Brian Harring3fec5a82012-03-01 05:57:03 -0800997 else:
998 if options.chrome_rev == constants.CHROME_REV_SPEC:
Brian Harring1b8c4c82012-05-29 23:03:04 -0700999 cros_build_lib.Die(
1000 'Chrome rev must not be %s if chrome_version is not set.'
1001 % constants.CHROME_REV_SPEC)
Brian Harring3fec5a82012-03-01 05:57:03 -08001002
Ryan Cuif37608e2012-07-10 14:28:48 -07001003 if options.gerrit_chrome:
1004 if options.remote_trybot or options.remote:
1005 cros_build_lib.Die('Cannot use --gerrit-chrome with remote trybots!')
1006 elif options.chrome_rev != constants.CHROME_REV_TOT:
1007 cros_build_lib.Die('Chrome rev must be %s if chrome_root is set.' %
1008 constants.CHROME_REV_TOT)
1009
Ryan Cuieaa9efd2012-04-25 17:56:45 -07001010 patches = bool(options.gerrit_patches or options.local_patches)
1011 if options.remote:
1012 if options.local:
Brian Harring1b8c4c82012-05-29 23:03:04 -07001013 cros_build_lib.Die('Cannot specify both --remote and --local')
Ryan Cui54da0702012-04-19 18:38:08 -07001014
Ryan Cuieaa9efd2012-04-25 17:56:45 -07001015 if not options.buildbot and not patches:
Brian Harring1b8c4c82012-05-29 23:03:04 -07001016 cros_build_lib.Die('Must provide patches when running with --remote.')
Brian Harring3fec5a82012-03-01 05:57:03 -08001017
Ryan Cuieaa9efd2012-04-25 17:56:45 -07001018 # --debug needs to be explicitly passed through for remote invocations.
1019 release_mode_with_patches = (options.buildbot and patches and
1020 '--debug' not in options.pass_through_args)
1021 else:
1022 if len(args) > 1:
Brian Harring1b8c4c82012-05-29 23:03:04 -07001023 cros_build_lib.Die('Multiple configs not supported if not running with '
Brian Harringf1aad832012-07-18 10:46:39 -07001024 '--remote. Got %r', args)
Ryan Cuieaa9efd2012-04-25 17:56:45 -07001025
Ryan Cui79319ab2012-05-21 12:59:18 -07001026 if options.slaves:
Brian Harring1b8c4c82012-05-29 23:03:04 -07001027 cros_build_lib.Die('Cannot use --slaves if not running with --remote.')
Ryan Cui79319ab2012-05-21 12:59:18 -07001028
Ryan Cuieaa9efd2012-04-25 17:56:45 -07001029 release_mode_with_patches = (options.buildbot and patches and
1030 not options.debug)
1031
Ryan Cuiba41ad32012-03-08 17:15:29 -08001032 if options.buildbot and options.remote_trybot:
Brian Harring1b8c4c82012-05-29 23:03:04 -07001033 cros_build_lib.Die(
1034 '--buildbot and --remote-trybot cannot be used together.')
Ryan Cuiba41ad32012-03-08 17:15:29 -08001035
Ryan Cui85867972012-02-23 18:21:49 -08001036 # Record whether --debug was set explicitly vs. it was inferred.
1037 options.debug_forced = False
1038 if options.debug:
1039 options.debug_forced = True
1040 else:
Ryan Cui16ca5812012-03-08 20:34:27 -08001041 # We don't set debug by default for
1042 # 1. --buildbot invocations.
1043 # 2. --remote invocations, because it needs to push changes to the tryjob
1044 # repo.
1045 options.debug = not options.buildbot and not options.remote
Brian Harring3fec5a82012-03-01 05:57:03 -08001046
Brian Harring3fec5a82012-03-01 05:57:03 -08001047
Brian Harring1d7ba942012-04-24 06:37:18 -07001048# pylint: disable=W0613
Ryan Cui85867972012-02-23 18:21:49 -08001049def _PostParseCheck(options, args):
1050 """Perform some usage validation after we've parsed the arguments
Brian Harring3fec5a82012-03-01 05:57:03 -08001051
Ryan Cui85867972012-02-23 18:21:49 -08001052 Args:
1053 options/args: The options/args object returned by optparse
1054 """
Ryan Cuie1e4e662012-05-21 16:39:46 -07001055 if not options.branch:
Chris Sosa126103a2012-06-18 09:03:17 -07001056 options.branch = cros_build_lib.GetChromiteTrackingBranch()
Ryan Cuie1e4e662012-05-21 16:39:46 -07001057
Ryan Cui5ba7e152012-05-10 14:36:52 -07001058 if options.local_patches and not repository.IsARepoRoot(options.sourceroot):
1059 raise Exception('Could not find repo checkout at %s!'
1060 % options.sourceroot)
1061
Brian Harring609dc4e2012-05-07 02:17:44 -07001062 if options.local_patches:
Brian Harring1d7ba942012-04-24 06:37:18 -07001063 options.local_patches = _CheckLocalPatches(
Brian Harring609dc4e2012-05-07 02:17:44 -07001064 options.sourceroot, options.local_patches)
Brian Harring1d7ba942012-04-24 06:37:18 -07001065
1066 default = os.environ.get('CBUILDBOT_DEFAULT_MODE')
1067 if (default and not any([options.local, options.buildbot,
1068 options.remote, options.remote_trybot])):
Brian Harring1b8c4c82012-05-29 23:03:04 -07001069 cros_build_lib.Info("CBUILDBOT_DEFAULT_MODE=%s env var detected, using it."
1070 % default)
Brian Harring1d7ba942012-04-24 06:37:18 -07001071 default = default.lower()
1072 if default == 'local':
1073 options.local = True
1074 elif default == 'remote':
1075 options.remote = True
1076 elif default == 'buildbot':
1077 options.buildbot = True
1078 else:
Brian Harring1b8c4c82012-05-29 23:03:04 -07001079 cros_build_lib.Die("CBUILDBOT_DEFAULT_MODE value %s isn't supported. "
1080 % default)
Ryan Cui85867972012-02-23 18:21:49 -08001081
1082
1083def _ParseCommandLine(parser, argv):
1084 """Completely parse the commandline arguments"""
Brian Harring3fec5a82012-03-01 05:57:03 -08001085 (options, args) = parser.parse_args(argv)
Brian Harring37e559b2012-05-22 20:47:32 -07001086
1087 if options.output_api_version:
1088 print _REEXEC_API_VERSION
1089 sys.exit(0)
1090
Ryan Cui54da0702012-04-19 18:38:08 -07001091 if options.list:
1092 _PrintValidConfigs(options.print_all)
1093 sys.exit(0)
1094
Ryan Cui8be16062012-04-24 12:05:26 -07001095 # Strip out null arguments.
1096 # TODO(rcui): Remove when buildbot is fixed
1097 args = [arg for arg in args if arg]
1098 if not args:
1099 parser.error('Invalid usage. Use -h to see usage. Use -l to list '
1100 'supported configs.')
1101
Ryan Cui85867972012-02-23 18:21:49 -08001102 _FinishParsing(options, args)
1103 return options, args
1104
1105
1106def main(argv):
1107 # Set umask to 022 so files created by buildbot are readable.
1108 os.umask(022)
1109
Brian Harring1b8c4c82012-05-29 23:03:04 -07001110 if cros_build_lib.IsInsideChroot():
1111 cros_build_lib.Die('Please run cbuildbot from outside the chroot.')
Ryan Cui85867972012-02-23 18:21:49 -08001112
1113 parser = _CreateParser()
1114 (options, args) = _ParseCommandLine(parser, argv)
Brian Harring3fec5a82012-03-01 05:57:03 -08001115
Brian Harring3fec5a82012-03-01 05:57:03 -08001116 _PostParseCheck(options, args)
1117
1118 if options.remote:
Brian Harring1b8c4c82012-05-29 23:03:04 -07001119 cros_build_lib.logger.setLevel(logging.WARNING)
Ryan Cui16ca5812012-03-08 20:34:27 -08001120
Brian Harring3fec5a82012-03-01 05:57:03 -08001121 # Verify configs are valid.
1122 for bot in args:
1123 _GetConfig(bot)
1124
1125 # Verify gerrit patches are valid.
Ryan Cui16ca5812012-03-08 20:34:27 -08001126 print 'Verifying patches...'
Ryan Cuie1e4e662012-05-21 16:39:46 -07001127 patch_pool = AcquirePoolFromOptions(options)
Ryan Cui16d9e1f2012-05-11 10:50:18 -07001128
Ryan Cuieaa9efd2012-04-25 17:56:45 -07001129 # --debug need to be explicitly passed through for remote invocations.
1130 if options.buildbot and '--debug' not in options.pass_through_args:
1131 _ConfirmRemoteBuildbotRun()
1132
Ryan Cui16ca5812012-03-08 20:34:27 -08001133 print 'Submitting tryjob...'
Ryan Cui16d9e1f2012-05-11 10:50:18 -07001134 tryjob = remote_try.RemoteTryJob(options, args, patch_pool.local_patches)
Ryan Cuia25d8eb2012-07-11 14:54:27 -07001135 tryjob.Submit(testjob=options.test_tryjob, dryrun=False)
Ryan Cui16ca5812012-03-08 20:34:27 -08001136 print 'Tryjob submitted!'
1137 print ('Go to %s to view the status of your job.'
Ryan Cui4906e1c2012-04-03 20:09:34 -07001138 % tryjob.GetTrybotWaterfallLink())
Brian Harring3fec5a82012-03-01 05:57:03 -08001139 sys.exit(0)
Ryan Cui54da0702012-04-19 18:38:08 -07001140 elif (not options.buildbot and not options.remote_trybot
1141 and not options.resume and not options.local):
Brian Harring1b8c4c82012-05-29 23:03:04 -07001142 cros_build_lib.Warning(
1143 'Running in LOCAL TRYBOT mode! Use --remote to submit REMOTE '
1144 'tryjobs. Use --local to suppress this message.')
1145 cros_build_lib.Warning(
Ryan Cui51591352012-07-09 15:15:53 -07001146 'In the future, --local will be required to run the local '
Brian Harring1b8c4c82012-05-29 23:03:04 -07001147 'trybot.')
Ryan Cui54da0702012-04-19 18:38:08 -07001148 time.sleep(5)
Brian Harring3fec5a82012-03-01 05:57:03 -08001149
Ryan Cui8be16062012-04-24 12:05:26 -07001150 # Only expecting one config
1151 bot_id = args[-1]
1152 build_config = _GetConfig(bot_id)
Brian Harring3fec5a82012-03-01 05:57:03 -08001153
1154 if options.reference_repo is None:
Ryan Cui5ba7e152012-05-10 14:36:52 -07001155 repo_path = os.path.join(options.sourceroot, '.repo')
Brian Harring3fec5a82012-03-01 05:57:03 -08001156 # If we're being run from a repo checkout, reuse the repo's git pool to
1157 # cut down on sync time.
1158 if os.path.exists(repo_path):
Ryan Cui5ba7e152012-05-10 14:36:52 -07001159 options.reference_repo = options.sourceroot
Brian Harring3fec5a82012-03-01 05:57:03 -08001160 elif options.reference_repo:
1161 if not os.path.exists(options.reference_repo):
1162 parser.error('Reference path %s does not exist'
1163 % (options.reference_repo,))
1164 elif not os.path.exists(os.path.join(options.reference_repo, '.repo')):
1165 parser.error('Reference path %s does not look to be the base of a '
1166 'repo checkout; no .repo exists in the root.'
1167 % (options.reference_repo,))
Ryan Cuid4a24212012-04-04 18:08:12 -07001168
Brian Harringf11bf682012-05-14 15:53:43 -07001169 if (options.buildbot or options.remote_trybot) and not options.resume:
Brian Harring470f6112012-03-02 11:47:10 -08001170 if not options.cgroups:
Ryan Cuid4a24212012-04-04 18:08:12 -07001171 parser.error('Options --buildbot/--remote-trybot and --nocgroups cannot '
1172 'be used together. Cgroup support is required for '
1173 'buildbot/remote-trybot mode.')
Brian Harring470f6112012-03-02 11:47:10 -08001174 if not cgroups.Cgroup.CgroupsSupported():
Ryan Cuid4a24212012-04-04 18:08:12 -07001175 parser.error('Option --buildbot/--remote-trybot was given, but this '
1176 'system does not support cgroups. Failing.')
Brian Harring3fec5a82012-03-01 05:57:03 -08001177
Brian Harring351ce442012-03-09 16:38:14 -08001178 missing = []
1179 for program in _BUILDBOT_REQUIRED_BINARIES:
Brian Harring1b8c4c82012-05-29 23:03:04 -07001180 ret = cros_build_lib.RunCommand(
1181 'which %s' % program, shell=True, redirect_stderr=True,
1182 redirect_stdout=True, error_code_ok=True, print_cmd=False)
Brian Harring351ce442012-03-09 16:38:14 -08001183 if ret.returncode != 0:
1184 missing.append(program)
1185
1186 if missing:
Ryan Cuid4a24212012-04-04 18:08:12 -07001187 parser.error("Option --buildbot/--remote-trybot requires the following "
1188 "binaries which couldn't be found in $PATH: %s"
Brian Harring351ce442012-03-09 16:38:14 -08001189 % (', '.join(missing)))
1190
Brian Harring3fec5a82012-03-01 05:57:03 -08001191 if options.reference_repo:
1192 options.reference_repo = os.path.abspath(options.reference_repo)
1193
1194 if options.dump_config:
1195 # This works, but option ordering is bad...
1196 print 'Configuration %s:' % bot_id
1197 pretty_printer = pprint.PrettyPrinter(indent=2)
1198 pretty_printer.pprint(build_config)
1199 sys.exit(0)
1200
1201 if not options.buildroot:
1202 if options.buildbot:
1203 parser.error('Please specify a buildroot with the --buildroot option.')
Matt Tennantd55b1f42012-04-13 14:15:01 -07001204
Ryan Cui5ba7e152012-05-10 14:36:52 -07001205 options.buildroot = _DetermineDefaultBuildRoot(options.sourceroot,
1206 build_config['internal'])
Brian Harring470f6112012-03-02 11:47:10 -08001207 # We use a marker file in the buildroot to indicate the user has
1208 # consented to using this directory.
1209 if not os.path.exists(repository.GetTrybotMarkerPath(options.buildroot)):
1210 _ConfirmBuildRoot(options.buildroot)
Brian Harring3fec5a82012-03-01 05:57:03 -08001211
1212 # Sanity check of buildroot- specifically that it's not pointing into the
1213 # midst of an existing repo since git-repo doesn't support nesting.
Brian Harring3fec5a82012-03-01 05:57:03 -08001214 if (not repository.IsARepoRoot(options.buildroot) and
David James6b80dc62012-02-29 15:34:40 -08001215 repository.InARepoRepository(options.buildroot)):
Brian Harring3fec5a82012-03-01 05:57:03 -08001216 parser.error('Configured buildroot %s points into a repository checkout, '
1217 'rather than the root of it. This is not supported.'
1218 % options.buildroot)
1219
Brian Harringd166aaf2012-05-14 18:31:53 -07001220 log_file = None
1221 if options.tee:
1222 default_dir = os.path.join(options.buildroot, _DEFAULT_LOG_DIR)
1223 dirname = options.log_dir or default_dir
1224 log_file = os.path.join(dirname, _BUILDBOT_LOG_FILE)
1225
1226 osutils.SafeMakedirs(dirname)
1227 _BackupPreviousLog(log_file)
1228
Brian Harring1b8c4c82012-05-29 23:03:04 -07001229 with cros_build_lib.ContextManagerStack() as stack:
Brian Harringc2d09d92012-05-13 22:03:15 -07001230 critical_section = stack.Add(cleanup.EnforcedCleanupSection)
1231 stack.Add(sudo.SudoKeepAlive)
Brian Harringd166aaf2012-05-14 18:31:53 -07001232
Brian Harringc2d09d92012-05-13 22:03:15 -07001233 if not options.resume:
Brian Harring2bf55e12012-05-13 21:31:55 -07001234 # If we're in resume mode, use our parents tempdir rather than
1235 # nesting another layer.
Brian Harringc2d09d92012-05-13 22:03:15 -07001236 stack.Add(osutils.TempDirContextManager, 'cbuildbot-tmp')
1237 logging.debug("Cbuildbot tempdir is %r.", os.environ.get('TMP'))
Brian Harringd166aaf2012-05-14 18:31:53 -07001238
Brian Harringead69102012-07-31 15:54:07 -07001239 # TODO(ferringb): update this once https://gerrit.chromium.org/gerrit/25359
1240 # is landed- it's sensitive to the manifest-versions cache path.
1241 options.preserve_paths = set(['manifest-versions',
1242 'manifest-versions-internal'])
Brian Harringd166aaf2012-05-14 18:31:53 -07001243 if log_file is not None:
1244 stack.Add(tee.Tee, log_file)
Brian Harring2d8f9ff2012-06-30 15:58:28 -07001245 options.preserve_paths.add(_DEFAULT_LOG_DIR)
Brian Harringd166aaf2012-05-14 18:31:53 -07001246
Brian Harringc2d09d92012-05-13 22:03:15 -07001247 if options.cgroups:
1248 stack.Add(cgroups.SimpleContainChildren, 'cbuildbot')
Brian Harringa184efa2012-03-04 11:51:25 -08001249
Brian Harringc2d09d92012-05-13 22:03:15 -07001250 # Mark everything between EnforcedCleanupSection and here as having to
1251 # be rolled back via the contextmanager cleanup handlers. This
1252 # ensures that sudo bits cannot outlive cbuildbot, that anything
1253 # cgroups would kill gets killed, etc.
1254 critical_section.ForkWatchdog()
Brian Harringd166aaf2012-05-14 18:31:53 -07001255
Brian Harringc2d09d92012-05-13 22:03:15 -07001256 if options.timeout > 0:
Brian Harring1b8c4c82012-05-29 23:03:04 -07001257 stack.Add(cros_build_lib.Timeout, options.timeout)
Brian Harringa184efa2012-03-04 11:51:25 -08001258
Brian Harringc2d09d92012-05-13 22:03:15 -07001259 if not options.buildbot:
1260 build_config = cbuildbot_config.OverrideConfigForTrybot(
1261 build_config,
1262 options.remote_trybot)
1263
1264 _RunBuildStagesWrapper(options, build_config)