|
|
|
Lines 1944-1959
for branch in BRANCHES:
|
Link Here
|
|---|
|
| 1944 |
else: |
1944 |
else: |
| 1945 |
for i in BRANCHES[branch]['platforms'][p][fedora][suite_type]: |
1945 |
for i in BRANCHES[branch]['platforms'][p][fedora][suite_type]: |
| 1946 |
try: |
1946 |
try: |
| 1947 |
if i[0] == suite[0]: |
1947 |
if i[0] == suite[0]: |
| 1948 |
BRANCHES[branch]['platforms'][p][fedora][suite_type].remove(i) |
1948 |
BRANCHES[branch]['platforms'][p][fedora][suite_type].remove(i) |
| 1949 |
except KeyError: |
1949 |
except KeyError: |
| 1950 |
pass |
1950 |
pass |
| 1951 |
|
1951 |
|
|
|
1952 |
# bug 981177 - schedule debug mochitest_bc_3 on ec2 for release branches |
| 1953 |
for name in ('mozilla-aurora', 'mozilla-beta', 'mozilla-release', 'mozilla-esr24'): |
| 1954 |
BRANCHES[name]['platforms']['linux']['ubuntu32_vm']['debug_unittest_suites'] += MOCHITEST_BC_3[:] |
| 1955 |
BRANCHES[name]['platforms']['linux64']['ubuntu64_vm']['debug_unittest_suites'] += MOCHITEST_BC_3[:] |
| 1956 |
|
| 1952 |
# TALOS: If you set 'talos_slave_platforms' for a branch you will only get that subset of platforms |
1957 |
# TALOS: If you set 'talos_slave_platforms' for a branch you will only get that subset of platforms |
| 1953 |
for branch in BRANCHES.keys(): |
1958 |
for branch in BRANCHES.keys(): |
| 1954 |
for os in PLATFORMS.keys(): # 'macosx64', 'win32' and on |
1959 |
for os in PLATFORMS.keys(): # 'macosx64', 'win32' and on |
| 1955 |
if os not in BRANCHES[branch]['platforms'].keys(): |
1960 |
if os not in BRANCHES[branch]['platforms'].keys(): |
| 1956 |
continue |
1961 |
continue |
| 1957 |
if BRANCHES[branch]['platforms'][os].get('talos_slave_platforms') is None: |
1962 |
if BRANCHES[branch]['platforms'][os].get('talos_slave_platforms') is None: |
| 1958 |
continue |
1963 |
continue |
| 1959 |
platforms_for_os = get_talos_slave_platforms(PLATFORMS, platforms=(os,)) |
1964 |
platforms_for_os = get_talos_slave_platforms(PLATFORMS, platforms=(os,)) |