Backed out changeset ca9a7fa7d6a9 (bug 1363742) for breaking decision task

This commit is contained in:
Carsten "Tomcat" Book 2017-06-19 14:25:11 +02:00
Родитель 33c9c232a2
Коммит 88eb85e603
6 изменённых файлов: 22 добавлений и 10 удалений

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

@ -31,7 +31,7 @@ job-template:
by-build-platform:
macosx64-nightly: 8
default: 6
run-on-projects: ['mozilla-central', 'mozilla-beta']
run-on-projects: ['mozilla-central', 'mozilla-aurora', 'mozilla-beta']
ignore-locales:
by-build-platform:
# OSX has a special locale for japanese

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

@ -1255,7 +1255,7 @@ talos-chrome:
run-on-projects:
by-test-platform:
linux64-stylo/.*: ['mozilla-central', 'try']
default: ['mozilla-beta' 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
default: ['mozilla-beta', 'mozilla-aurora', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
max-run-time: 3600
e10s: true
mozharness:
@ -1280,7 +1280,7 @@ talos-dromaeojs:
run-on-projects:
by-test-platform:
linux64-stylo/.*: ['mozilla-central', 'try']
default: ['mozilla-beta', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
default: ['mozilla-beta', 'mozilla-aurora', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
max-run-time: 3600
e10s: true
mozharness:
@ -1305,7 +1305,7 @@ talos-g1:
run-on-projects:
by-test-platform:
linux64-stylo/.*: ['mozilla-central', 'try']
default: ['mozilla-beta', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
default: ['mozilla-beta', 'mozilla-aurora', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
max-run-time: 7200
e10s: true
mozharness:
@ -1332,7 +1332,7 @@ talos-g2:
by-test-platform:
linux64-stylo/.*: ['mozilla-central', 'try']
linux64-stylo-sequential/.*: ['try']
default: ['mozilla-beta', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
default: ['mozilla-beta', 'mozilla-aurora', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
e10s: true
mozharness:
script: talos_script.py
@ -1356,7 +1356,7 @@ talos-g3:
run-on-projects:
by-test-platform:
linux64-stylo/.*: ['mozilla-central', 'try']
default: ['mozilla-beta', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
default: ['mozilla-beta', 'mozilla-aurora', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
max-run-time: 3600
e10s: true
mozharness:
@ -1381,7 +1381,7 @@ talos-g4:
run-on-projects:
by-test-platform:
linux64-stylo/.*: ['mozilla-central', 'try']
default: ['mozilla-beta', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
default: ['mozilla-beta', 'mozilla-aurora', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
max-run-time: 3600
e10s: true
mozharness:
@ -1433,7 +1433,7 @@ talos-other:
run-on-projects:
by-test-platform:
linux64-stylo/.*: ['mozilla-central', 'try']
default: ['mozilla-beta', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
default: ['mozilla-beta', 'mozilla-aurora', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
max-run-time: 3600
e10s: true
mozharness:
@ -1479,7 +1479,7 @@ talos-svgr:
run-on-projects:
by-test-platform:
linux64-stylo/.*: ['mozilla-central', 'try']
default: ['mozilla-beta', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
default: ['mozilla-beta', 'mozilla-aurora', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
max-run-time: 3600
e10s: true
mozharness:
@ -1504,7 +1504,7 @@ talos-tp5o:
run-on-projects:
by-test-platform:
linux64-stylo/.*: ['mozilla-central', 'try']
default: ['mozilla-beta', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
default: ['mozilla-beta', 'mozilla-aurora', 'mozilla-central', 'mozilla-inbound', 'autoland', 'try']
max-run-time: 3600
e10s: true
mozharness:

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

@ -45,6 +45,7 @@ class TestTargetTasks(unittest.TestCase):
"""run_on_projects=[all] includes release, integration, and other projects"""
self.assertTrue(self.default_matches(['all'], 'mozilla-central'))
self.assertTrue(self.default_matches(['all'], 'mozilla-inbound'))
self.assertTrue(self.default_matches(['all'], 'mozilla-aurora'))
self.assertTrue(self.default_matches(['all'], 'baobab'))
def test_default_integration(self):

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

@ -59,6 +59,7 @@ class MatchRunOnProjects(unittest.TestCase):
self.assertTrue(match_run_on_projects('autoland', ['all']))
self.assertTrue(match_run_on_projects('mozilla-inbound', ['all']))
self.assertTrue(match_run_on_projects('mozilla-central', ['all']))
self.assertTrue(match_run_on_projects('mozilla-aurora', ['all']))
self.assertTrue(match_run_on_projects('mozilla-beta', ['all']))
self.assertTrue(match_run_on_projects('mozilla-release', ['all']))
@ -68,6 +69,7 @@ class MatchRunOnProjects(unittest.TestCase):
self.assertFalse(match_run_on_projects('autoland', ['release']))
self.assertFalse(match_run_on_projects('mozilla-inbound', ['release']))
self.assertTrue(match_run_on_projects('mozilla-central', ['release']))
self.assertTrue(match_run_on_projects('mozilla-aurora', ['release']))
self.assertTrue(match_run_on_projects('mozilla-beta', ['release']))
self.assertTrue(match_run_on_projects('mozilla-release', ['release']))
@ -77,6 +79,7 @@ class MatchRunOnProjects(unittest.TestCase):
self.assertTrue(match_run_on_projects('autoland', ['integration']))
self.assertTrue(match_run_on_projects('mozilla-inbound', ['integration']))
self.assertFalse(match_run_on_projects('mozilla-central', ['integration']))
self.assertFalse(match_run_on_projects('mozilla-aurora', ['integration']))
self.assertFalse(match_run_on_projects('mozilla-beta', ['integration']))
self.assertFalse(match_run_on_projects('mozilla-integration', ['integration']))
@ -87,5 +90,6 @@ class MatchRunOnProjects(unittest.TestCase):
self.assertFalse(match_run_on_projects('autoland', ['release', 'try', 'date']))
self.assertFalse(match_run_on_projects('mozilla-inbound', ['release', 'try', 'date']))
self.assertTrue(match_run_on_projects('mozilla-central', ['release', 'try', 'date']))
self.assertTrue(match_run_on_projects('mozilla-aurora', ['release', 'try', 'date']))
self.assertTrue(match_run_on_projects('mozilla-beta', ['release', 'try', 'date']))
self.assertTrue(match_run_on_projects('mozilla-release', ['release', 'try', 'date']))

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

@ -504,6 +504,7 @@ BRANCH_PRIORITIES = {
'comm-beta': 'high',
'mozilla-central': 'medium',
'comm-central': 'medium',
'mozilla-aurora': 'medium',
'comm-aurora': 'medium',
'autoland': 'low',
'mozilla-inbound': 'low',

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

@ -40,6 +40,7 @@ This is a list of list-pairs, for ordering.
SIGNING_SCOPE_ALIAS_TO_PROJECT = [[
'all-nightly-branches', set([
'mozilla-central',
'mozilla-aurora',
])
], [
'all-release-branches', set([
@ -72,6 +73,7 @@ DEVEDITION_SIGNING_CERT_SCOPES = {
BEETMOVER_SCOPE_ALIAS_TO_PROJECT = [[
'all-nightly-branches', set([
'mozilla-central',
'mozilla-aurora',
'mozilla-beta',
'mozilla-release',
])
@ -134,6 +136,10 @@ BALROG_SCOPE_ALIAS_TO_PROJECT = [[
'nightly', set([
'mozilla-central',
])
], [
'aurora', set([
'mozilla-aurora',
])
], [
'beta', set([
'mozilla-beta',