From patchwork Mon Sep 30 21:07:03 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D6916: automation: use latest AMIs From: phabricator X-Patchwork-Id: 41864 Message-Id: <032a12fec77579133c95b2eb3f6bf14b@localhost.localdomain> To: Phabricator Cc: mercurial-devel@mercurial-scm.org Date: Mon, 30 Sep 2019 21:07:03 +0000 Closed by commit rHG6952d42f9158: automation: use latest AMIs (authored by indygreg). This revision was automatically updated to reflect the committed changes. This revision was not accepted when it landed; it landed in state "Needs Review". REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6916?vs=16689&id=16711 CHANGES SINCE LAST ACTION https://phab.mercurial-scm.org/D6916/new/ REVISION DETAIL https://phab.mercurial-scm.org/D6916 AFFECTED FILES contrib/automation/hgautomation/aws.py CHANGE DETAILS To: indygreg, #hg-reviewers Cc: mercurial-devel 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 @@ -821,21 +821,21 @@ image = find_image( ec2resource, DEBIAN_ACCOUNT_ID, - 'debian-stretch-hvm-x86_64-gp2-2019-02-19-26620', + 'debian-stretch-hvm-x86_64-gp2-2019-09-08-17994', ) ssh_username = 'admin' elif distro == 'ubuntu18.04': image = find_image( ec2resource, UBUNTU_ACCOUNT_ID, - 'ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20190403', + 'ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20190918', ) ssh_username = 'ubuntu' elif distro == 'ubuntu19.04': image = find_image( ec2resource, UBUNTU_ACCOUNT_ID, - 'ubuntu/images/hvm-ssd/ubuntu-disco-19.04-amd64-server-20190417', + 'ubuntu/images/hvm-ssd/ubuntu-disco-19.04-amd64-server-20190918', ) ssh_username = 'ubuntu' else: