Merge pull request #4729 from pmac/remove-win64-stub-installer-1348610

Fix bug 1348610: Win64 stub installer only for Nightly
This commit is contained in:
Paul McLanahan 2017-03-21 14:53:22 -04:00 коммит произвёл GitHub
Родитель f49d20a79c ea657fcb18
Коммит 436d87f986
2 изменённых файлов: 11 добавлений и 5 удалений

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

@ -88,7 +88,7 @@ class TestFirefoxDesktop(TestCase):
# Windows 64-bit
url = firefox_desktop.get_download_url('release', '38.0', 'win64', 'en-US', True)
self.assertListEqual(parse_qsl(urlparse(url).query),
[('product', 'firefox-stub'),
[('product', 'firefox-38.0-SSL'),
('os', 'win64'),
('lang', 'en-US')])
# Linux 64-bit
@ -110,7 +110,7 @@ class TestFirefoxDesktop(TestCase):
('lang', 'en-US')])
url = firefox_desktop.get_download_url('alpha', '28.0a2', 'win64', 'en-US', True)
self.assertListEqual(parse_qsl(urlparse(url).query),
[('product', 'firefox-aurora-stub'),
[('product', 'firefox-aurora-latest-ssl'),
('os', 'win64'),
('lang', 'en-US')])
url = firefox_desktop.get_download_url('alpha', '28.0a2', 'osx', 'en-US', True)

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

@ -617,15 +617,21 @@ STUB_INSTALLER_ALL = '__ALL__'
STUB_INSTALLER_LOCALES = {
'release': {
'win': STUB_INSTALLER_ALL,
'win64': STUB_INSTALLER_ALL,
# should come back in Fx 55
# bug 1348610
# 'win64': STUB_INSTALLER_ALL,
},
'beta': {
'win': STUB_INSTALLER_ALL,
'win64': STUB_INSTALLER_ALL,
# should come back in Fx 55
# bug 1348610
# 'win64': STUB_INSTALLER_ALL,
},
'alpha': {
'win': ['en-us'],
'win64': ['en-us'],
# should come back in Fx 55
# bug 1348610
# 'win64': ['en-us'],
},
'nightly': {
'win': ['en-us'],