From 05f6b0f3131750e62f269c557fb2c72efaf21f26 Mon Sep 17 00:00:00 2001 From: Andrew Halberstadt Date: Wed, 28 Aug 2019 22:06:01 +0000 Subject: [PATCH] Bug 1576957 - [ci] Turn off QuantumRender tasks on Ash, r=gbrown Depends on D43806 Differential Revision: https://phabricator.services.mozilla.com/D43807 --HG-- extra : moz-landing-system : lando --- taskcluster/taskgraph/target_tasks.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/taskcluster/taskgraph/target_tasks.py b/taskcluster/taskgraph/target_tasks.py index 44b06ac0640e..fbbefa67a63c 100644 --- a/taskcluster/taskgraph/target_tasks.py +++ b/taskcluster/taskgraph/target_tasks.py @@ -203,10 +203,17 @@ def target_tasks_ash(full_task_graph, parameters, graph_config): # and none of this linux64-asan/debug stuff if platform == 'linux64-asan' and attr['build_type'] == 'debug': return False - # no non-e10s tests + if attr.get('unittest_suite'): + # no non-e10s tests if not attr.get('e10s'): return False + + # filter out by test platform + for p in ('-qr',): + if p in attr['test_platform']: + return False + # don't upload symbols if attr['kind'] == 'upload-symbols': return False