mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Reduce macOS build task timeout
This commit is contained in:
parent
8b39fd3c7b
commit
50d5bac736
1 changed files with 3 additions and 2 deletions
|
@ -883,8 +883,9 @@ def with_homebrew(task, brewfiles):
|
||||||
def macos_build_task(name):
|
def macos_build_task(name):
|
||||||
build_task = (
|
build_task = (
|
||||||
macos_task(name)
|
macos_task(name)
|
||||||
# Allow long runtime in case the cache expired for all those Homebrew dependencies
|
# Stray processes eating CPU can slow things down:
|
||||||
.with_max_run_time_minutes(60 * 4)
|
# https://github.com/servo/servo/issues/24735
|
||||||
|
.with_max_run_time_minutes(60 * 2)
|
||||||
.with_env(**build_env, **unix_build_env, **macos_build_env)
|
.with_env(**build_env, **unix_build_env, **macos_build_env)
|
||||||
.with_repo()
|
.with_repo()
|
||||||
.with_python2()
|
.with_python2()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue