--- a/contrib/automation/hgautomation/cli.py Thu Sep 05 21:08:35 2019 -0700
+++ b/contrib/automation/hgautomation/cli.py Thu Sep 05 21:09:58 2019 -0700
@@ -185,6 +185,14 @@
test_flags)
+def publish_windows_artifacts(hg: HGAutomation, aws_region, version: str,
+ pypi: bool, mercurial_scm_org: bool,
+ ssh_username: str):
+ windows.publish_artifacts(DIST_PATH, version,
+ pypi=pypi, mercurial_scm_org=mercurial_scm_org,
+ ssh_username=ssh_username)
+
+
def get_parser():
parser = argparse.ArgumentParser()
@@ -403,6 +411,34 @@
)
sp.set_defaults(func=run_tests_windows)
+ sp = subparsers.add_parser(
+ 'publish-windows-artifacts',
+ help='Publish built Windows artifacts (wheels, installers, etc)'
+ )
+ sp.add_argument(
+ '--no-pypi',
+ dest='pypi',
+ action='store_false',
+ default=True,
+ help='Skip uploading to PyPI',
+ )
+ sp.add_argument(
+ '--no-mercurial-scm-org',
+ dest='mercurial_scm_org',
+ action='store_false',
+ default=True,
+ help='Skip uploading to www.mercurial-scm.org',
+ )
+ sp.add_argument(
+ '--ssh-username',
+ help='SSH username for mercurial-scm.org',
+ )
+ sp.add_argument(
+ 'version',
+ help='Mercurial version string to locate local packages',
+ )
+ sp.set_defaults(func=publish_windows_artifacts)
+
return parser