cuildbot_config: Remove unused signer_results flag.
We removed the SignerResultsStage a while back, but not the flag that
controlled it. Removing it now to clean things up.
BUG=chromium:375842
TEST=pylint + unittests + manual config_dump.json comparison.
Change-Id: I224cb99aaa3b3b1237d749d9dfe8f9f311386384
Reviewed-on: https://chromium-review.googlesource.com/200858
Reviewed-by: Don Garrett <dgarrett@chromium.org>
Tested-by: Don Garrett <dgarrett@chromium.org>
Commit-Queue: Don Garrett <dgarrett@chromium.org>
diff --git a/scripts/cbuildbot.py b/scripts/cbuildbot.py
index 6f94a11..4855578 100644
--- a/scripts/cbuildbot.py
+++ b/scripts/cbuildbot.py
@@ -479,11 +479,8 @@
self._RunParallelStages([archive_stage])
return
- # signer_results can't complete without push_image.
- assert not config.signer_results or config.push_image
-
- # paygen can't complete without signer_results.
- assert not config.paygen or config.signer_results
+ # paygen can't complete without push_image.
+ assert not config.paygen or config.push_image
if config.build_packages_in_background:
self._RunStage(build_stages.BuildPackagesStage, board,
@@ -1217,9 +1214,6 @@
group.add_remote_option('--nosdk', action='store_true',
default=False,
help='Re-create the SDK from scratch.')
- group.add_remote_option('--nosigner-results', action='store_false',
- dest='signer_results', default=True,
- help="Don't display signing results.")
group.add_remote_option('--nosync', action='store_false', dest='sync',
default=True, help="Don't sync before building.")
group.add_remote_option('--notests', action='store_false', dest='tests',