Skip to content

Commit

Permalink
bump to pg16beta3
Browse files Browse the repository at this point in the history
  • Loading branch information
naisila committed Aug 17, 2023
1 parent b342c24 commit dbbac7e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion circleci/images/PG_VERSIONS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
PG14=14.9
PG15=15.4
PG16=16~beta2
PG16=16~beta3
10 changes: 4 additions & 6 deletions circleci/images/exttester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -144,16 +144,14 @@ RUN echo "deb https://apt.postgresql.org/pub/repos/apt bullseye-pgdg main" >> /e
libpq5=${pgdg_version} \
postgresql-client-${PG_MAJOR}=${pgdg_version} \
postgresql-${PG_MAJOR}-dbgsym=${pgdg_version} \
postgresql-server-dev-${PG_MAJOR}=${pgdg_version}

postgresql-server-dev-${PG_MAJOR}=${pgdg_version} \
# wal2json not available yet for PG16
RUN if [ "$PG_MAJOR" != "16" ]; \
&& if [ "$PG_MAJOR" != "16" ]; \
then \
apt-get install -y --no-install-recommends --allow-downgrades postgresql-${PG_MAJOR}-wal2json; \
fi;

fi \
# clear apt cache
RUN rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/*

# add postgress to the path
ENV PATH=/usr/lib/postgresql/$PG_MAJOR/bin/:$PATH
Expand Down

0 comments on commit dbbac7e

Please sign in to comment.