mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Only use high prority for macOS when testing a PR for merging.
This commit is contained in:
parent
1762cba533
commit
e5f6333832
1 changed files with 2 additions and 1 deletions
|
@ -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"])
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue