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

Unified Diff: tools/mb/mb.py

Issue 1803293002: Only enforce the 'chromium' check in MB for the default config file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweak exception clauses Created 4 years, 9 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
« no previous file with comments | « no previous file | tools/mb/mb_unittest.py » ('j') | tools/mb/mb_unittest.py » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/mb/mb.py
diff --git a/tools/mb/mb.py b/tools/mb/mb.py
index c2650ed4b15f1e0680c0b83bc7dbae9fce760f61..fe46c4639a53b29ccc74337781ed3ddcc3f078f2 100755
--- a/tools/mb/mb.py
+++ b/tools/mb/mb.py
@@ -29,16 +29,7 @@ from collections import OrderedDict
def main(args):
mbw = MetaBuildWrapper()
- mbw.ParseArgs(args)
-
- try:
- ret = mbw.args.func()
- if ret:
- mbw.DumpInputFiles()
- return ret
- except Exception:
- mbw.DumpInputFiles()
- raise
+ return mbw.Main(args)
class MetaBuildWrapper(object):
@@ -59,6 +50,21 @@ class MetaBuildWrapper(object):
self.common_dev_configs = []
self.unsupported_configs = []
+ def Main(self, args):
+ self.ParseArgs(args)
+ try:
+ ret = self.args.func()
+ if ret:
+ self.DumpInputFiles()
+ return ret
+ except KeyboardInterrupt:
+ self.Print('interrupted, exiting', stream=sys.stderr)
+ return 130
+ except Exception as e:
+ self.DumpInputFiles()
+ self.Print(str(e))
+ return 1
+
def ParseArgs(self, argv):
def AddCommonOptions(subp):
subp.add_argument('-b', '--builder',
@@ -326,27 +332,28 @@ class MetaBuildWrapper(object):
if not mixin in referenced_mixins:
errs.append('Unreferenced mixin "%s".' % mixin)
- # Check that 'chromium' bots which build public artifacts do not include
- # the chrome_with_codecs 'mixin'.
- if not 'chromium' in self.masters:
- errs.append('Missing "chromium" master. Please update this proprietary '
- 'codecs check with the name of the master responsible for '
- 'public build artifacts.')
- else:
- for builder in self.masters['chromium']:
- config = self.masters['chromium'][builder]
- def RecurseMixins(current_mixin):
- if current_mixin == 'chrome_with_codecs':
- errs.append('Public artifact builder "%s" can not contain the '
- '"chrome_with_codecs" mixin.' % builder)
- return
- if not 'mixins' in self.mixins[current_mixin]:
- return
- for mixin in self.mixins[current_mixin]['mixins']:
+ # If we're checking the Chromium config, check that the 'chromium' bots
+ # which build public artifacts do not include the chrome_with_codecs mixin.
+ if self.args.config_file == self.default_config:
+ if 'chromium' in self.masters:
+ for builder in self.masters['chromium']:
+ config = self.masters['chromium'][builder]
+ def RecurseMixins(current_mixin):
+ if current_mixin == 'chrome_with_codecs':
+ errs.append('Public artifact builder "%s" can not contain the '
+ '"chrome_with_codecs" mixin.' % builder)
+ return
+ if not 'mixins' in self.mixins[current_mixin]:
+ return
+ for mixin in self.mixins[current_mixin]['mixins']:
+ RecurseMixins(mixin)
+
+ for mixin in self.configs[config]:
RecurseMixins(mixin)
-
- for mixin in self.configs[config]:
- RecurseMixins(mixin)
+ else:
+ errs.append('Missing "chromium" master. Please update this '
+ 'proprietary codecs check with the name of the master '
+ 'responsible for public build artifacts.')
if errs:
raise MBErr(('mb config file %s has problems:' % self.args.config_file) +
@@ -1304,11 +1311,4 @@ def QuoteForCmd(arg):
if __name__ == '__main__':
- try:
- sys.exit(main(sys.argv[1:]))
- except MBErr as e:
- print(e)
- sys.exit(1)
- except KeyboardInterrupt:
- print("interrupted, exiting", stream=sys.stderr)
- sys.exit(130)
+ sys.exit(main(sys.argv[1:]))
« no previous file with comments | « no previous file | tools/mb/mb_unittest.py » ('j') | tools/mb/mb_unittest.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698