mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 07:13:20 +00:00
Bug 1490502 - Don't ship Fennec x86-64 Nightly to Play Store yet; r=jlorenzo
Filter out the x86-64 Fennec Nightly builds until we evaluated it. Differential Revision: https://phabricator.services.mozilla.com/D5901 --HG-- extra : moz-landing-system : lando
This commit is contained in:
parent
5dd475d1cc
commit
fd31765608
@ -39,9 +39,11 @@ def get_dependent_loaded_tasks(config, loaded_tasks):
|
||||
]
|
||||
|
||||
# TODO Bug 1368484: Activate aarch64 once ready
|
||||
non_aarch64_tasks = [
|
||||
# TODO Bug 1490502: Activate x86-64 once ready
|
||||
non_shipping_tasks = [
|
||||
task for task in android_tasks
|
||||
if 'aarch64' not in task.attributes.get('build_platform', '')
|
||||
if 'aarch64' not in task.attributes.get('build_platform', '') and
|
||||
'x86_64' not in task.attributes.get('build_platform', '')
|
||||
]
|
||||
|
||||
return non_aarch64_tasks
|
||||
return non_shipping_tasks
|
||||
|
@ -474,6 +474,7 @@ def target_tasks_nightly_fennec(full_task_graph, parameters, graph_config):
|
||||
'android-api-16-nightly',
|
||||
'android-nightly',
|
||||
'android-x86-nightly',
|
||||
'android-x86_64-nightly',
|
||||
):
|
||||
if not task.attributes.get('nightly', False):
|
||||
return False
|
||||
|
Loading…
Reference in New Issue
Block a user