Skip to content

Commit d24b10a

Browse files
committed
Backed out changeset 0477a13c69c8 (bug 1612149) for failing test_try_option_syntax.py on a CLOSED TREE
1 parent 3dd48dc commit d24b10a

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

taskcluster/taskgraph/try_option_syntax.py

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,23 +119,29 @@ def alias_matches(pattern):
119119
'Ubuntu': [
120120
'linux32',
121121
'linux64',
122-
'linux64-asan',
123-
'linux1804-64',
124-
'linux1804-64-asan'
122+
'linux64-asan'
125123
],
126124
'x64': [
127125
'linux64',
128-
'linux64-asan',
129-
'linux1804-64',
130-
'linux1804-64-asan'
126+
'linux64-asan'
131127
],
132128
'Android 7.0 Moto G5 32bit': ['android-hw-g5-7.0-arm7-api-16'],
133129
'Android 8.0 Google Pixel 2 32bit': ['android-hw-p2-8.0-arm7-api-16'],
134130
'Android 8.0 Google Pixel 2 64bit': ['android-hw-p2-8.0-android-aarch64'],
135131
'10.14': ['macosx1014-64'],
132+
# other commonly-used substrings for platforms not yet supported with
133+
# in-tree taskgraphs:
134+
# '10.10.5': [..TODO..],
135+
# '10.6': [..TODO..],
136+
# '10.8': [..TODO..],
137+
# 'Android 2.3 API9': [..TODO..],
136138
'Windows 7': ['windows7-32'],
137139
'Windows 7 VM': ['windows7-32-vm'],
140+
'Windows 8': ['windows8-64'],
138141
'Windows 10': ['windows10-64'],
142+
# 'Windows XP': [..TODO..],
143+
# 'win32': [..TODO..],
144+
# 'win64': [..TODO..],
139145
}
140146

141147
TEST_CHUNK_SUFFIX = re.compile('(.*)-([0-9]+)$')

0 commit comments

Comments
 (0)