From a239f1f07381cd3a21c03076216943174fc77c15 Mon Sep 17 00:00:00 2001 From: marianrai Date: Fri, 9 Aug 2019 15:58:19 +0300 Subject: [PATCH] Changed the group_symbol to 'Rap' and added a new condition for ARM_RAPTOR_URL_PARAMS usage. --- automation/taskcluster/lib/tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/automation/taskcluster/lib/tasks.py b/automation/taskcluster/lib/tasks.py index 318d84ba3..6ce1638a3 100644 --- a/automation/taskcluster/lib/tasks.py +++ b/automation/taskcluster/lib/tasks.py @@ -621,7 +621,7 @@ class TaskBuilder(object): description='Raptor YouTube Playback on Fenix', test_name='raptor-youtube-playback', job_symbol='ytp', - group_symbol='Rap-fenix', + group_symbol='Rap', force_run_on_64_bit_device=force_run_on_64_bit_device, ) @@ -667,7 +667,7 @@ class TaskBuilder(object): "--download-symbols=ondemand", ]] # Bug 1558456 - Stop tracking youtube-playback-test on motoG5 for >1080p cases - if variant.abi == 'arm': + if variant.abi == 'arm' and test_name == 'raptor-youtube-playback': params_query = '&'.join(ARM_RAPTOR_URL_PARAMS) add_extra_params_option = "--test-url-params={}".format(params_query) command[0].append(add_extra_params_option)