# HG changeset patch # User Gregory Szorc # Date 2019-09-29 17:21:18 # Node ID 3aa227feffbe0598b070058297eda0fa744d9884 # Parent 136c2536d83fb3214112f6d7d4437c335812755b automation: remove Ubuntu 18.10 It reached end of life on July 18, 2019. I don't think we should care about supporting it. Differential Revision: https://phab.mercurial-scm.org/D6912 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 @@ -831,13 +831,6 @@ def ensure_linux_dev_ami(c: AWSConnectio 'ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20190403', ) ssh_username = 'ubuntu' - elif distro == 'ubuntu18.10': - image = find_image( - ec2resource, - UBUNTU_ACCOUNT_ID, - 'ubuntu/images/hvm-ssd/ubuntu-cosmic-18.10-amd64-server-20190402', - ) - ssh_username = 'ubuntu' elif distro == 'ubuntu19.04': image = find_image( ec2resource, diff --git a/contrib/automation/hgautomation/linux.py b/contrib/automation/hgautomation/linux.py --- a/contrib/automation/hgautomation/linux.py +++ b/contrib/automation/hgautomation/linux.py @@ -22,7 +22,6 @@ from .ssh import ( DISTROS = { 'debian9', 'ubuntu18.04', - 'ubuntu18.10', 'ubuntu19.04', }