Bug 1874126 - Only create target.maven.tar.xz in automation r=geckoview-reviewers,jcristau,nalexander,ohall

Differential Revision: https://phabricator.services.mozilla.com/D198334
This commit is contained in:
Geoff Brown 2024-01-17 17:01:09 +00:00
Родитель a4b15dde23
Коммит c539ebd3e2
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -179,6 +179,8 @@ def android_gradle_dependencies(command_context, args):
def get_maven_archive_paths(maven_folder):
for subdir, _, files in os.walk(maven_folder):
if "-SNAPSHOT" in subdir:
continue
for file in files:
yield os.path.join(subdir, file)
@ -215,7 +217,8 @@ def android_archive_geckoview(command_context, args):
if ret != 0:
return ret
create_maven_archive(command_context.topobjdir)
if "MOZ_AUTOMATION" in os.environ:
create_maven_archive(command_context.topobjdir)
return 0