Changeset 136555 in webkit
- Timestamp:
- Dec 4, 2012, 1:10:38 PM (12 years ago)
- Location:
- trunk/Tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r136552 r136555 1 2012-12-04 Adam Barth <abarth@webkit.org> 2 3 Remove obsolete code from webkitpy 4 https://bugs.webkit.org/show_bug.cgi?id=104029 5 6 Reviewed by Eric Seidel. 7 8 * Scripts/webkitpy/tool/bot/commitqueuetask.py: 9 (CommitQueueTask.run): 10 * Scripts/webkitpy/tool/steps/commit.py: 11 (Commit.options): 12 * Scripts/webkitpy/tool/steps/options.py: 13 (Options): 14 1 15 2012-12-04 Jochen Eisinger <jochen@chromium.org> 2 16 -
trunk/Tools/Scripts/webkitpy/tool/bot/commitqueuetask.py
r110944 r136555 89 89 if not self.validate(): 90 90 return False 91 # FIXME: We should understand why the land failure occur ed and retry if possible.91 # FIXME: We should understand why the land failure occurred and retry if possible. 92 92 if not self._land(): 93 93 return self.report_failure() -
trunk/Tools/Scripts/webkitpy/tool/steps/commit.py
r135744 r136555 41 41 42 42 class Commit(AbstractStep): 43 # FIXME: This option exists only to make sure we don't break scripts which include --ignore-builders44 # You can safely delete this option any time after 11/01/11.45 43 @classmethod 46 44 def options(cls): 47 45 return AbstractStep.options() + [ 48 Options.check_builders,49 46 Options.non_interactive, 50 47 ] -
trunk/Tools/Scripts/webkitpy/tool/steps/options.py
r110195 r136555 34 34 build_style = make_option("--build-style", action="store", dest="build_style", default=None, help="Whether to build debug, release, or both.") 35 35 cc = make_option("--cc", action="store", type="string", dest="cc", help="Comma-separated list of email addresses to carbon-copy.") 36 check_builders = make_option("--ignore-builders", action="store_false", dest="check_builders", default=True, help="DEPRECATED: Will be removed any time after 11/01/11.")37 36 check_style = make_option("--ignore-style", action="store_false", dest="check_style", default=True, help="Don't check to see if the patch has proper style before uploading.") 38 37 check_style_filter = make_option("--check-style-filter", action="store", type="string", dest="check_style_filter", default=None, help="Filter style-checker rules (see check-webkit-style --help).")
Note:
See TracChangeset
for help on using the changeset viewer.