Bug 1683797: Remove obsolete "build_targets" option from CI r=sheehan,releng-reviewers,jmaher

Rusttests were the only remaining usage.

Differential Revision: https://phabricator.services.mozilla.com/D106295
This commit is contained in:
Mitchell Hentges 2021-03-09 14:45:26 +00:00
parent d925c83f15
commit 492df70186
2 changed files with 0 additions and 9 deletions

View File

@ -785,10 +785,6 @@ items from that key's value."
args = ["build", "-v"]
custom_build_targets = self.config.get("build_targets")
if custom_build_targets:
args += custom_build_targets
# This will error on non-0 exit code.
self._run_mach_command_in_build_env(args)

View File

@ -524,11 +524,6 @@ def _WriteOutput(params, **values):
print('The following targets were not found:')
for target in values['invalid_targets']:
print('\t', target)
if 'build_targets' in values:
values['build_targets'].sort()
print('Targets that require a build:')
for target in values['build_targets']:
print('\t', target)
if 'compile_targets' in values:
values['compile_targets'].sort()
print('Targets that need to be built:')