-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds postgres 15 support for docker #251
Conversation
@@ -24,6 +24,8 @@ RUN apk add --no-cache \ | |||
llvm \ | |||
lz4-dev \ | |||
zstd-dev \ | |||
libxslt-dev \ | |||
libxml2-dev \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was not directly related to pg 15 changes but we recently added these two lines since new alpine images does not have these packages
@@ -1,5 +1,5 @@ | |||
# This file is auto generated from it's template, | |||
# see citusdata/tools/packaging_automation/templates/docker/postgres-12/postgres-12.tmpl.dockerfile. | |||
# see citusdata/tools/packaging_automation/templates/docker/postgres-13/postgres-13.tmpl.dockerfile. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
but the filename is based on pg13 ?
@@ -1,53 +0,0 @@ | |||
name: Citus package all platforms beta tests |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you share the failing test run that makes us removing this file ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I needed to remove beta tests since my test tag v10.2.4_beta was removed. I tried to update my tests but it took too much time. Therefore I opened a task for it and will handle afterwards
#253