From facfa6a417189aea2ef482a93e8dd163c978acf2 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Wed, 24 Apr 2019 09:50:53 -0400 Subject: [PATCH] Allow mac WPT jobs to run longer than 60 minutes --- etc/taskcluster/decision_task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/taskcluster/decision_task.py b/etc/taskcluster/decision_task.py index 4742767bd91..df4651ecc72 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -412,7 +412,7 @@ def wpt_chunks(platform, make_chunk_task, build_task, total_chunks, processes, .with_curl_artifact_script(build_task, "target.tar.gz") .with_script("tar -xzf target.tar.gz") .with_index_and_artifacts_expire_in(log_artifacts_expire_in) - .with_max_run_time_minutes(60) + .with_max_run_time_minutes(90) .with_env( TOTAL_CHUNKS=str(total_chunks), THIS_CHUNK=str(this_chunk),