Skip to content

Commit

Permalink
Add 16beta3 CI images (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
naisila authored Aug 17, 2023
1 parent 1b94240 commit 0c8d80c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions circleci/images/PG_VERSIONS
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
PG14=14.9
PG15=15.4
PG16=16~beta3
6 changes: 5 additions & 1 deletion circleci/images/exttester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,11 @@ RUN echo "deb https://apt.postgresql.org/pub/repos/apt bullseye-pgdg main" >> /e
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 PG16
&& if [ "$PG_MAJOR" != "16" ]; \
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

0 comments on commit 0c8d80c

Please sign in to comment.