mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Auto merge of #22450 - servo:multi, r=jdm
One Treeherder page for all try-related branches This will be effective at https://treeherder.allizom.org/#/jobs?repo=servo-try once https://github.com/mozilla/treeherder/pull/4371 lands, and at https://treeherder.mozilla.org/#/jobs?repo=servo-try after it is deployed. <!-- 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/22450) <!-- Reviewable:end -->
This commit is contained in:
commit
201f3dc50a
1 changed files with 3 additions and 1 deletions
|
@ -12,7 +12,9 @@ from decisionlib import CONFIG, SHARED
|
||||||
def main(task_for):
|
def main(task_for):
|
||||||
assert CONFIG.git_ref.startswith("refs/heads/")
|
assert CONFIG.git_ref.startswith("refs/heads/")
|
||||||
branch = CONFIG.git_ref[len("refs/heads/"):]
|
branch = CONFIG.git_ref[len("refs/heads/"):]
|
||||||
CONFIG.treeherder_repository_name = "servo-" + branch
|
CONFIG.treeherder_repository_name = "servo-" + (
|
||||||
|
branch if not branch.startswith("try-") else "try"
|
||||||
|
)
|
||||||
|
|
||||||
if task_for == "github-push":
|
if task_for == "github-push":
|
||||||
# FIXME https://github.com/servo/servo/issues/22325 implement these:
|
# FIXME https://github.com/servo/servo/issues/22325 implement these:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue