Bug 1549538 - Fix win64 artifact builds based on inbound. r=nalexander

Differential Revision: https://phabricator.services.mozilla.com/D30115

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Chris Manchester 2019-05-06 21:05:52 +00:00
Родитель 542d414ea3
Коммит 22b5c49e92
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -732,9 +732,11 @@ class TaskCache(CacheManager):
# PGO builds are now known as "shippable" for all platforms but Android.
# For macOS and linux32 shippable builds are equivalent to opt builds and
# replace them on some trees.
# replace them on some trees. Additionally, we no longer produce win64
# opt builds on integration branches.
if not job.startswith('android-'):
if job.endswith('-pgo') or job in ('macosx64-opt', 'linux-opt'):
if job.endswith('-pgo') or job in ('macosx64-opt', 'linux-opt',
'win64-opt'):
tree += '.shippable'
if job.endswith('-pgo'):
job = job.replace('-pgo', '-opt')