Skip to content

Commit

Permalink
Skip pg13 for some el/ol 6 (#82)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
onurctirtir authored Nov 10, 2020
1 parent 5555ed4 commit da5ebdd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packaging/citus_package
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit da5ebdd

Please sign in to comment.