diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2019-09-25 03:58:14 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-25 03:58:14 -0400 |
commit | 46611b012e9342b6845165c258e9a73311e4d6f4 (patch) | |
tree | 68da78de812c5de374614f919fa885523e4302ad /etc/taskcluster/decision_task.py | |
parent | 57961bd3b55dd72af2c254c5d552fbd2265371e3 (diff) | |
parent | 555a60753c3a14380bce03c75713b81ff08a0805 (diff) | |
download | servo-46611b012e9342b6845165c258e9a73311e4d6f4.tar.gz servo-46611b012e9342b6845165c258e9a73311e4d6f4.zip |
Auto merge of #24268 - servo:jdm-patch-57, r=SimonSapin
Extend nightly WPT update timeout by an hour.
Jobs have been timing out more than usual recently, and on machines that don't have any clear resource hogging going on.
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/24268)
<!-- Reviewable:end -->
Diffstat (limited to 'etc/taskcluster/decision_task.py')
-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 58caf2fb0bc..4ef0a73f9bf 100644 --- a/etc/taskcluster/decision_task.py +++ b/etc/taskcluster/decision_task.py @@ -558,7 +558,7 @@ def update_wpt(): .with_features("taskclusterProxy") .with_scopes("secrets:get:project/servo/wpt-sync") .with_index_and_artifacts_expire_in(log_artifacts_expire_in) - .with_max_run_time_minutes(5 * 60) + .with_max_run_time_minutes(6 * 60) ) return ( with_homebrew(update_task, [ |