Support autoland in the list of Mozilla repositories;

This commit is contained in:
Benjamin Bouvier 2017-08-24 12:01:25 +02:00
Родитель 3435238d05
Коммит 832adafdff
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -4,9 +4,6 @@ import re
import utils
MAC_BUILDBOT_REPOSITORIES = ('mozilla-beta', 'mozilla-release', 'mozilla-esr52')
class UrlCreator(object):
def __init__(self, config, repo, other_platform=None):
self.repo = repo
@ -141,6 +138,8 @@ class MozillaUrlCreator(UrlCreator):
def __init__(self, config, repo, platform=None):
if repo == "mozilla-try":
repo = "try";
if repo == "mozilla-autoland":
repo = "autoland"
UrlCreator.__init__(self, config, repo, platform)
def _platform(self):

Просмотреть файл

@ -15,6 +15,7 @@ PLATFORMS = [
REPOS = [
"mozilla-inbound",
"mozilla-autoland",
"mozilla-central",
"mozilla-beta",
"mozilla-release",