From d06f3596ae9874628970097a959f94e80ded6fe9 Mon Sep 17 00:00:00 2001 From: Tom Prince Date: Fri, 31 May 2019 14:34:47 -0600 Subject: [PATCH] Add support for mozilla-esr68 repository. (#5018) * Bug 1555777: Mark esr52 repositories as inactive. * Bug 1555777: Add mozilla-esr68 repostitory. --- treeherder/model/fixtures/repository.json | 30 +++++++++++++++++++++-- ui/intermittent-failures/constants.js | 1 + 2 files changed, 29 insertions(+), 2 deletions(-) diff --git a/treeherder/model/fixtures/repository.json b/treeherder/model/fixtures/repository.json index 266475d70..46d03af70 100644 --- a/treeherder/model/fixtures/repository.json +++ b/treeherder/model/fixtures/repository.json @@ -1076,7 +1076,7 @@ "dvcs_type": "hg", "name": "mozilla-esr52", "url": "https://hg.mozilla.org/releases/mozilla-esr52", - "active_status": "active", + "active_status": "onhold", "codebase": "gecko", "repository_group": 2, "description": "" @@ -1089,7 +1089,7 @@ "dvcs_type": "hg", "name": "comm-esr52", "url": "https://hg.mozilla.org/releases/comm-esr52", - "active_status": "active", + "active_status": "onhold", "codebase": "comm", "repository_group": 8, "description": "" @@ -1413,5 +1413,31 @@ "repository_group": 11, "description": "Fenix is not your parent's Android browser" } + }, + { + "pk": 109, + "model": "model.repository", + "fields": { + "dvcs_type": "hg", + "name": "mozilla-esr68", + "url": "https://hg.mozilla.org/releases/mozilla-esr68", + "active_status": "active", + "codebase": "gecko", + "repository_group": 2, + "description": "" + } + }, + { + "pk": 110, + "model": "model.repository", + "fields": { + "dvcs_type": "hg", + "name": "comm-esr68", + "url": "https://hg.mozilla.org/releases/comm-esr68", + "active_status": "onhold", + "codebase": "comm", + "repository_group": 8, + "description": "" + } } ] diff --git a/ui/intermittent-failures/constants.js b/ui/intermittent-failures/constants.js index a01089db6..8b766b17e 100644 --- a/ui/intermittent-failures/constants.js +++ b/ui/intermittent-failures/constants.js @@ -37,6 +37,7 @@ export const treeOptions = [ 'mozilla-central', 'mozilla-inbound', 'mozilla-esr60', + 'mozilla-esr68', 'autoland', 'firefox-releases', 'comm-central',