From 397a41e0f9f82987952912b8127a5e6929e29752 Mon Sep 17 00:00:00 2001 From: David Steele Date: Sat, 12 Oct 2019 11:24:55 -0400 Subject: [PATCH] Add Ubuntu 19.04 container definition. --- test/lib/pgBackRestTest/Common/VmTest.pm | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/test/lib/pgBackRestTest/Common/VmTest.pm b/test/lib/pgBackRestTest/Common/VmTest.pm index f7073ce09..80113ade4 100644 --- a/test/lib/pgBackRestTest/Common/VmTest.pm +++ b/test/lib/pgBackRestTest/Common/VmTest.pm @@ -95,6 +95,8 @@ use constant VM_U16 => 'u16'; push @EXPORT, qw(VM_U16); use constant VM_U18 => 'u18'; push @EXPORT, qw(VM_U18); +use constant VM_U19 => 'u19'; + push @EXPORT, qw(VM_U19); use constant VM_D8 => 'd8'; push @EXPORT, qw(VM_D8); use constant VM_D9 => 'd9'; @@ -403,6 +405,30 @@ my $oyVm = 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, + ], + }, }; ####################################################################################################################################