# HG changeset patch # User Gregory Szorc # Date 1569780405 25200 # 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 -r dffa9d3c2491 -r 92c8bae84e7a contrib/automation/hgautomation/aws.py --- a/contrib/automation/hgautomation/aws.py Sun Sep 29 10:37:38 2019 -0700 +++ b/contrib/automation/hgautomation/aws.py Sun Sep 29 11:06:45 2019 -0700 @@ -847,7 +847,7 @@ 'DeviceName': image.block_device_mappings[0]['DeviceName'], 'Ebs': { 'DeleteOnTermination': True, - 'VolumeSize': 8, + 'VolumeSize': 10, 'VolumeType': 'gp2', }, },