Skip to content

Commit

Permalink
Bug 1548552 - Stop shipping Fennec nightlies to the Play Store from m…
Browse files Browse the repository at this point in the history
…ozilla-central. r=tomprince, a=RyanVM

Test Plan:
taskgraph-diff

Differential Revision: https://phabricator.services.mozilla.com/D29689

--HG--
extra : rebase_source : 6575ce75307ea660115a76fe4dfb2cef497ea970
  • Loading branch information
JohanLorenzo committed May 2, 2019
1 parent 409c01f commit a0948f1
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions taskcluster/taskgraph/target_tasks.py
Expand Up @@ -446,19 +446,15 @@ def target_tasks_nightly_fennec(full_task_graph, parameters, graph_config):
nightly build process involves a pipeline of builds, signing,
and, eventually, uploading the tasks to balrog."""
def filter(task):
platform = task.attributes.get('build_platform')
if not filter_for_project(task, parameters):
return False
if platform in ('android-aarch64-nightly',
'android-api-16-nightly',
'android-nightly',
'android-x86-nightly',
'android-x86_64-nightly',
):
if not task.attributes.get('nightly', False):
return False
return filter_for_project(task, parameters)
filter
# XXX Starting 69, we don't ship Fennec Nightly anymore. We just want geckoview to be
# uploaded
return task.label in (
'beetmover-geckoview-android-aarch64-nightly/opt',
'beetmover-geckoview-android-api-16-nightly/opt',
'beetmover-geckoview-android-x86-nightly/opt',
'beetmover-geckoview-android-x86_64-nightly/opt',
)

return [l for l, t in full_task_graph.tasks.iteritems() if filter(t)]


Expand Down

0 comments on commit a0948f1

Please sign in to comment.