contrib/automation/hgautomation/cli.py
changeset 48794 834c938227c6
parent 48357 fc1ba19ec4a0
parent 48747 ae28d37f5969
child 48844 d79f0ce95c47
--- a/contrib/automation/hgautomation/cli.py	Thu Feb 17 07:34:49 2022 +0100
+++ b/contrib/automation/hgautomation/cli.py	Fri Feb 18 11:37:08 2022 +0100
@@ -151,7 +151,7 @@
     image = aws.ensure_windows_dev_ami(c, base_image_name=base_image_name)
     DIST_PATH.mkdir(exist_ok=True)
 
-    with aws.temporary_windows_dev_instances(c, image, 't3.medium') as insts:
+    with aws.temporary_windows_dev_instances(c, image, 'm6i.large') as insts:
         instance = insts[0]
 
         winrm_client = instance.winrm_client
@@ -496,7 +496,7 @@
     sp.add_argument(
         '--instance-type',
         help='EC2 instance type to use',
-        default='t3.medium',
+        default='m6i.large',
     )
     sp.add_argument(
         '--python-version',