Bug 1642004: `-p all` try syntax selects shippable builds instead of opt r=ahal

Differential Revision: https://phabricator.services.mozilla.com/D79169
This commit is contained in:
Ben Hearsum 2020-06-12 19:08:54 +00:00
Родитель 9b85722f24
Коммит 0462efd54d
1 изменённых файлов: 7 добавлений и 4 удалений

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

@ -38,10 +38,13 @@ UNCOMMON_TRY_TASK_LABELS = [
r'web-platform-tests.*backlog', # hide wpt jobs that are not implemented yet - bug 1572820
r'-ccov/',
r'-profiling-', # talos/raptor profiling jobs are run too often
# Shippable build tests, except those that don't have opt versions - bug 1638014
# blacklist tasks on these platforms that aren't part of the named test suites,
# which are known to only run on shippable builds
r'(linux1804-64|windows10-64|windows7-32)-shippable(?!.*(awsy|browsertime|marionette-headless|raptor|talos|web-platform-tests-wdspec-headless))', # noqa - too long
# Generally, we don't want shippable builds or tests to run, unless they're needed
# for performance tests _or_ on OS X, where we run all tests against shippable
# builds (not opt).
# The negative lookbehind assertion looks weird here because it has to be fixed
# width, and we have two platforms (build & test) to catch.
# The full version of the first platform is macosx1014-64
r'(?<!(x1014-64|macosx64))-shippable(?!.*(awsy|browsertime|marionette-headless|raptor|talos|web-platform-tests-wdspec-headless))', # noqa - too long
]