Mercurial > public > mercurial-scm > hg-stable
comparison contrib/automation/hgautomation/aws.py @ 43015:3aa227feffbe
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
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sun, 29 Sep 2019 10:21:18 -0700 |
parents | 3e3fb15bfeea |
children | 92c8bae84e7a |
comparison
equal
deleted
inserted
replaced
43014:136c2536d83f | 43015:3aa227feffbe |
---|---|
829 ec2resource, | 829 ec2resource, |
830 UBUNTU_ACCOUNT_ID, | 830 UBUNTU_ACCOUNT_ID, |
831 'ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20190403', | 831 'ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-20190403', |
832 ) | 832 ) |
833 ssh_username = 'ubuntu' | 833 ssh_username = 'ubuntu' |
834 elif distro == 'ubuntu18.10': | |
835 image = find_image( | |
836 ec2resource, | |
837 UBUNTU_ACCOUNT_ID, | |
838 'ubuntu/images/hvm-ssd/ubuntu-cosmic-18.10-amd64-server-20190402', | |
839 ) | |
840 ssh_username = 'ubuntu' | |
841 elif distro == 'ubuntu19.04': | 834 elif distro == 'ubuntu19.04': |
842 image = find_image( | 835 image = find_image( |
843 ec2resource, | 836 ec2resource, |
844 UBUNTU_ACCOUNT_ID, | 837 UBUNTU_ACCOUNT_ID, |
845 'ubuntu/images/hvm-ssd/ubuntu-disco-19.04-amd64-server-20190417', | 838 'ubuntu/images/hvm-ssd/ubuntu-disco-19.04-amd64-server-20190417', |