Skip to content
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

Add 17.2 images #159

Draft
wants to merge 7 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions circleci/images/PG_VERSIONS
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
PG14=14.12
PG15=15.7
PG16=16.3
PG17=17.2
2 changes: 1 addition & 1 deletion circleci/images/citusupgradetester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ apt-get update
# infer the pgdgversion of postgres based on the $PG_VERSION
pgdg_version=$(apt list -a postgresql-server-dev-${PG_MAJOR} 2>/dev/null | grep "${PG_VERSION}" | awk '{print $2}' | head -n1 )

apt-get install -y --no-install-recommends --allow-downgrades \
apt-get install -y --no-install-recommends \
libpq-dev=${pgdg_version} \
libpq5=${pgdg_version} \
postgresql-${PG_MAJOR}=${pgdg_version} \
Expand Down
2 changes: 1 addition & 1 deletion circleci/images/extbuilder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ apt-get update
# infer the pgdgversion of postgres based on the $PG_VERSION
pgdg_version=$(apt list -a postgresql-server-dev-${PG_MAJOR} 2>/dev/null | grep "${PG_VERSION}" | awk '{print $2}' | head -n1 )

apt-get install -y --no-install-recommends --allow-downgrades \
apt-get install -y --no-install-recommends \
libpq-dev=${pgdg_version} \
libpq5=${pgdg_version} \
postgresql-${PG_MAJOR}=${pgdg_version} \
Expand Down
13 changes: 11 additions & 2 deletions circleci/images/exttester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ apt-get install -y --no-install-recommends \
locales \
make \
perl \
bison \
flex \

# clear apt cache
rm -rf /var/lib/apt/lists/*
Expand Down Expand Up @@ -120,6 +122,8 @@ apt-get install -y --no-install-recommends \
locales \
make \
perl \
bison \
flex \

# clear apt cache
rm -rf /var/lib/apt/lists/*
Expand Down Expand Up @@ -158,7 +162,7 @@ apt-get update
# infer the pgdgversion of postgres based on the $PG_VERSION
pgdg_version=$(apt list -a postgresql-server-dev-${PG_MAJOR} 2>/dev/null | grep "${PG_VERSION}" | awk '{print $2}' | head -n1 )

apt-get install -y --no-install-recommends --allow-downgrades \
apt-get install -y --no-install-recommends \
libdbi-perl \
libdbd-pg-perl \
libpq-dev=${pgdg_version} \
Expand All @@ -167,7 +171,12 @@ apt-get install -y --no-install-recommends --allow-downgrades \
postgresql-client-${PG_MAJOR}=${pgdg_version} \
postgresql-${PG_MAJOR}-dbgsym=${pgdg_version} \
postgresql-server-dev-${PG_MAJOR}=${pgdg_version} \
postgresql-${PG_MAJOR}-wal2json \

# wal2json not available yet for PG17
if [ "$PG_MAJOR" != "17" ];
then
apt-get install -y --no-install-recommends --allow-downgrades postgresql-${PG_MAJOR}-wal2json;
fi;

# clear apt cache
rm -rf /var/lib/apt/lists/*
Expand Down
2 changes: 1 addition & 1 deletion circleci/images/failtester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ apt-get update
# infer the pgdgversion of postgres based on the $PG_VERSION
pgdg_version=$(apt list -a postgresql-server-dev-${PG_MAJOR} 2>/dev/null | grep "${PG_VERSION}" | awk '{print $2}' | head -n1 )

apt-get install -y --no-install-recommends --allow-downgrades \
apt-get install -y --no-install-recommends \
libpq-dev=${pgdg_version} \
libpq5=${pgdg_version} \
postgresql-${PG_MAJOR}=${pgdg_version} \
Expand Down
Loading