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