зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
542d414ea3
Коммит
22b5c49e92
|
@ -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')
|
||||
|
|
Загрузка…
Ссылка в новой задаче