From da5ebdd18847f37d625d1c6db5027a166decd686 Mon Sep 17 00:00:00 2001 From: Onur Tirtir Date: Tue, 10 Nov 2020 11:33:26 +0300 Subject: [PATCH] Skip pg13 for some el/ol 6 (#82) CentOS 6 and OracleLinux 6 don't have pg13 packages yet. So skip building pg13 packages for them. This commit will be reverted when those distros have necessary pg13 packages. --- packaging/citus_package | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/packaging/citus_package b/packaging/citus_package index 8e09fe01..7cfe7ab9 100755 --- a/packaging/citus_package +++ b/packaging/citus_package @@ -360,6 +360,14 @@ foreach my $platform (@platforms) { mkdir $outputdir; foreach my $pg (@pg_versions) { + if (($os eq "el" or $os eq "ol") and $release eq "6" and $pg eq "pg13") + { + # CentOS and OracleLinux 6 doesn't have pg13 packages yet + # so we dont't have package builder docker images yet. + # So skip building distro packages for them. + next; + } + my @docker_args = ( 'run', '--rm',