From 0e05a377f3a7fc52cd69a858b6854d252ca5a37d Mon Sep 17 00:00:00 2001 From: Mitchell Hentges Date: Wed, 8 May 2019 13:42:53 +0200 Subject: [PATCH] Reduces number of raptor jobs (#2339) --- automation/taskcluster/decision_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/taskcluster/decision_task.py b/automation/taskcluster/decision_task.py index a7036dce8..f52b6a1e7 100644 --- a/automation/taskcluster/decision_task.py +++ b/automation/taskcluster/decision_task.py @@ -80,7 +80,7 @@ def pr_or_push(is_push): ALL_RAPTOR_CRAFT_FUNCTIONS = [ BUILDER.craft_raptor_tp6m_cold_task(for_suite=i) - for i in range(1, 15) + for i in range(1, 2) # TODO change to range(1, 15) once https://bugzilla.mozilla.org/show_bug.cgi?id=1549948 is fixed ] for craft_function in ALL_RAPTOR_CRAFT_FUNCTIONS: args = (signing_task_id, mozharness_task_id, variant, gecko_revision)