# HG changeset patch # User Gregory Szorc # Date 2019-09-29 18:06:45 # Node ID 92c8bae84e7abc7dfc5afc400fcb464ee04d7731 # Parent dffa9d3c2491c5d4d829b6d38a995b377d40e453 automation: increase size of Linux AMI build volume I ran out of space attempting to build a few AMIs. Let's give the environment an extra 2 GB to utilize. Differential Revision: https://phab.mercurial-scm.org/D6915 diff --git a/contrib/automation/hgautomation/aws.py b/contrib/automation/hgautomation/aws.py --- a/contrib/automation/hgautomation/aws.py +++ b/contrib/automation/hgautomation/aws.py @@ -847,7 +847,7 @@ def ensure_linux_dev_ami(c: AWSConnectio 'DeviceName': image.block_device_mappings[0]['DeviceName'], 'Ebs': { 'DeleteOnTermination': True, - 'VolumeSize': 8, + 'VolumeSize': 10, 'VolumeType': 'gp2', }, },