Only use high prority for macOS when testing a PR for merging.

This commit is contained in:
Simon Sapin 2019-11-18 10:59:20 +01:00
parent 1762cba533
commit e5f6333832

View file

@ -628,7 +628,8 @@ def macos_release_build_with_debug_assertions(priority=None):
def macos_wpt():
build_task = macos_release_build_with_debug_assertions(priority="high")
priority = "high" if CONFIG.git_ref == "refs/heads/auto" else None
build_task = macos_release_build_with_debug_assertions(priority=priority)
def macos_run_task(name):
task = macos_task(name).with_python2()
return with_homebrew(task, ["etc/taskcluster/macos/Brewfile-gstreamer"])