Auto merge of #23252 - servo:jdm-patch-36, r=SimonSapin

Allow mac WPT jobs to run longer than 60 minutes

This should fix #23251 which has been hitting us lately as we run more tests.

<!-- 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/23252)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2019-04-24 17:35:35 -04:00 committed by GitHub
commit 0b1a790683
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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_curl_artifact_script(build_task, "target.tar.gz")
.with_script("tar -xzf target.tar.gz") .with_script("tar -xzf target.tar.gz")
.with_index_and_artifacts_expire_in(log_artifacts_expire_in) .with_index_and_artifacts_expire_in(log_artifacts_expire_in)
.with_max_run_time_minutes(60) .with_max_run_time_minutes(90)
.with_env( .with_env(
TOTAL_CHUNKS=str(total_chunks), TOTAL_CHUNKS=str(total_chunks),
THIS_CHUNK=str(this_chunk), THIS_CHUNK=str(this_chunk),