# HG changeset patch # User Gregory Szorc # Date 2019-08-03 23:47:49 # Node ID 3e3fb15bfeea409c03cfab7d2828c4017ae7976a # Parent 89ba81771fc9dc8e7ecae10eb5833bbada1566f4 automation: increase root volume size on Linux It is close to full in the AMI. I actually ran out of space running tests without increasing the volume size! Differential Revision: https://phab.mercurial-scm.org/D6716 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 @@ -970,7 +970,7 @@ def temporary_linux_dev_instances(c: AWS 'DeviceName': image.block_device_mappings[0]['DeviceName'], 'Ebs': { 'DeleteOnTermination': True, - 'VolumeSize': 8, + 'VolumeSize': 12, 'VolumeType': 'gp2', }, }