Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1180)

Unified Diff: master/skia_master_scripts/factory.py

Issue 14517004: Change Builder Names, MkIII (Closed) Base URL: http://skia.googlecode.com/svn/buildbot/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: master/skia_master_scripts/factory.py
===================================================================
--- master/skia_master_scripts/factory.py (revision 8881)
+++ master/skia_master_scripts/factory.py (working copy)
@@ -32,7 +32,6 @@
CONFIG_DEBUG = 'Debug'
CONFIG_RELEASE = 'Release'
-CONFIG_BENCH = 'Bench'
CONFIGURATIONS = [CONFIG_DEBUG, CONFIG_RELEASE]
@@ -119,8 +118,12 @@
else:
self._env_vars = dict(environment_variables)
gyp_defines = self._env_vars.get('GYP_DEFINES', '')
- self._env_vars['GYP_DEFINES'] = gyp_defines + \
- ' skia_warnings_as_errors=%d' % int(compile_warnings_as_errors)
+ if gyp_defines:
+ self._env_vars['GYP_DEFINES'] = gyp_defines + \
+ ' skia_warnings_as_errors=%d' % int(compile_warnings_as_errors)
+ else:
rmistry 2013/04/29 21:02:58 Instead of the else you could remove line 123 and
borenet 2013/04/30 11:43:51 The problem is that GYP_DEFINES may not be in self
rmistry 2013/04/30 11:59:24 self._env_vars['GYP_DEFINES'] = self._env_vars.get
+ self._env_vars['GYP_DEFINES'] = \
+ ' skia_warnings_as_errors=%d' % int(compile_warnings_as_errors)
# Get an implementation of SkiaCommands as appropriate for
# this target_platform.
@@ -511,54 +514,38 @@
self.UploadBenchResultsToAppEngine()
self.UploadBenchGraphs()
- def Build(self, clobber=None):
+ def Build(self, role=None, clobber=None):
"""Build and return the complete BuildFactory.
+ role: string; the intended role of this builder. The role affects which
+ steps are run. Known values are given in the utils module.
clobber: boolean indicating whether we should clean before building
"""
- self.CommonSteps(clobber)
- self.NonPerfSteps()
- self.PerfSteps()
+ if not role:
+ # If no role is provide, just run everything.
+ self.CommonSteps(clobber)
+ self.NonPerfSteps()
+ self.PerfSteps()
+ elif role == utils.BUILDER_ROLE_COMPILE:
+ # Compile-only builder.
+ self.UpdateSteps()
+ self.Compile(clobber=clobber, build_in_one_step=False)
+ else:
+ self.CommonSteps(clobber)
+ if role == utils.BUILDER_ROLE_TEST:
+ # Test-running builder.
+ self.NonPerfSteps()
+ if self._configuration == CONFIG_DEBUG:
+ # Debug-mode testers run all steps, but release-mode testers don't.
+ self.PerfSteps()
+ elif role == utils.BUILDER_ROLE_PERF:
+ # Perf-only builder.
+ if not self._perf_output_basedir:
+ raise ValueError(
+ 'BuildPerfOnly requires perf_output_basedir to be defined.')
+ if self._configuration != CONFIG_RELEASE:
+ raise ValueError('BuildPerfOnly should run in %s configuration.' %
+ CONFIG_RELEASE)
+ self.PerfSteps()
self.Validate()
return self
-
- def BuildCompileOnly(self, clobber=None):
- """Build and return the complete BuildFactory, with only the compile step.
- Does not build in one step; the assumption is that if we're only performing
- the compile, we want as much information as possible about *which* compile
- steps are passing and failing.
-
- clobber: boolean indicating whether we should clean before building
- """
- self.UpdateSteps()
- self.Compile(clobber=clobber, build_in_one_step=False)
- self.Validate()
- return self
-
- def BuildNoPerf(self, clobber=None):
- """Build and return the complete BuildFactory, without the benchmarking
- steps.
-
- clobber: boolean indicating whether we should clean before building
- """
- self.CommonSteps(clobber)
- self.NonPerfSteps()
- self.Validate()
- return self
-
- def BuildPerfOnly(self, clobber=None):
- """Build and return the complete BuildFactory, with only the benchmarking
- steps.
-
- clobber: boolean indicating whether we should clean before building
- """
- if not self._perf_output_basedir:
- raise ValueError(
- 'BuildPerfOnly requires perf_output_basedir to be defined.')
- if self._configuration != CONFIG_RELEASE:
- raise ValueError('BuildPerfOnly should run in %s configuration.' %
- CONFIG_RELEASE)
- self.CommonSteps(clobber)
- self.PerfSteps()
- self.Validate()
- return self

Powered by Google App Engine
This is Rietveld 408576698