1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-09-16 09:06:18 +02:00

Add Ubuntu 19.04 container definition.

This commit is contained in:
David Steele
2019-10-12 11:24:55 -04:00
parent 93656db186
commit 397a41e0f9

View File

@@ -95,6 +95,8 @@ use constant VM_U16 => 'u16';
push @EXPORT, qw(VM_U16); push @EXPORT, qw(VM_U16);
use constant VM_U18 => 'u18'; use constant VM_U18 => 'u18';
push @EXPORT, qw(VM_U18); push @EXPORT, qw(VM_U18);
use constant VM_U19 => 'u19';
push @EXPORT, qw(VM_U19);
use constant VM_D8 => 'd8'; use constant VM_D8 => 'd8';
push @EXPORT, qw(VM_D8); push @EXPORT, qw(VM_D8);
use constant VM_D9 => 'd9'; use constant VM_D9 => 'd9';
@@ -403,6 +405,30 @@ my $oyVm =
PG_VERSION_12, PG_VERSION_12,
], ],
}, },
# Ubuntu 19.04
&VM_U19 =>
{
&VM_OS_BASE => VM_OS_BASE_DEBIAN,
&VM_OS => VM_OS_UBUNTU,
&VM_OS_REPO => 'disco',
&VM_IMAGE => 'ubuntu:19.04',
&VM_ARCH => VM_ARCH_AMD64,
&VMDEF_COVERAGE_C => true,
&VMDEF_PGSQL_BIN => '/usr/lib/postgresql/{[version]}/bin',
&VMDEF_WITH_BACKTRACE => true,
&VM_DB =>
[
PG_VERSION_12,
],
&VM_DB_TEST =>
[
PG_VERSION_12,
],
},
}; };
#################################################################################################################################### ####################################################################################################################################