Reduce macOS build task timeout

This commit is contained in:
Simon Sapin 2019-11-16 10:11:36 +01:00
parent 8b39fd3c7b
commit 50d5bac736

View file

@ -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()