Mercurial > public > mercurial-scm > hg
comparison contrib/automation/hgautomation/cli.py @ 43018:d1d919f679f7
automation: support and use Debian Buster by default
While Debian Buster (Debian 10) was released in July, the
AWS AMIs were not published until mid September.
This commit teaches the automation system to create AMIs for
Debian Buster. Since Debian Buster is the new stable Debian
release, we make it the default distribution for automation.
Differential Revision: https://phab.mercurial-scm.org/D6917
author | Gregory Szorc <gregory.szorc@gmail.com> |
---|---|
date | Sun, 29 Sep 2019 11:29:25 -0700 |
parents | 92593d72e10b |
children | b8df6a470bbb |
comparison
equal
deleted
inserted
replaced
43017:6952d42f9158 | 43018:d1d919f679f7 |
---|---|
350 ) | 350 ) |
351 sp.add_argument( | 351 sp.add_argument( |
352 '--distro', | 352 '--distro', |
353 help='Linux distribution to run tests on', | 353 help='Linux distribution to run tests on', |
354 choices=linux.DISTROS, | 354 choices=linux.DISTROS, |
355 default='debian9', | 355 default='debian10', |
356 ) | 356 ) |
357 sp.add_argument( | 357 sp.add_argument( |
358 '--filesystem', | 358 '--filesystem', |
359 help='Filesystem type to use', | 359 help='Filesystem type to use', |
360 choices={'btrfs', 'default', 'ext3', 'ext4', 'jfs', 'tmpfs', 'xfs'}, | 360 choices={'btrfs', 'default', 'ext3', 'ext4', 'jfs', 'tmpfs', 'xfs'}, |