diff options
author | Josh Matthews <josh@joshmatthews.net> | 2019-04-24 09:50:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-24 09:50:53 -0400 |
commit | facfa6a417189aea2ef482a93e8dd163c978acf2 (patch) | |
tree | ce6ec7b80fa38bc252e8fac3728cd970350215cc | |
parent | 155fad62b32f9879893a9f45cde9695ba735f95f (diff) | |
download | servo-facfa6a417189aea2ef482a93e8dd163c978acf2.tar.gz servo-facfa6a417189aea2ef482a93e8dd163c978acf2.zip |
Allow mac WPT jobs to run longer than 60 minutes
-rw-r--r-- | etc/taskcluster/decision_task.py | 2 |
1 files changed, 1 insertions, 1 deletions
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), |