Update PostgreSQL version to 18beta3 in Dockerfile and CI workflow

m3hm3t/pg18_beta3
Mehmet Yilmaz 2025-08-15 09:59:20 +00:00
parent b384ffdc04
commit 18acb9df79
2 changed files with 5 additions and 5 deletions

View File

@ -109,7 +109,7 @@ RUN cp -r .pgenv/src .pgenv/pgsql-* .pgenv/config .pgenv-staging/
RUN rm .pgenv-staging/config/default.conf RUN rm .pgenv-staging/config/default.conf
FROM base AS pg18 FROM base AS pg18
RUN MAKEFLAGS="-j $(nproc)" pgenv build 18beta2 RUN MAKEFLAGS="-j $(nproc)" pgenv build 18beta3
RUN rm .pgenv/src/*.tar* RUN rm .pgenv/src/*.tar*
RUN make -C .pgenv/src/postgresql-*/ clean RUN make -C .pgenv/src/postgresql-*/ clean
RUN make -C .pgenv/src/postgresql-*/src/include install RUN make -C .pgenv/src/postgresql-*/src/include install
@ -229,7 +229,7 @@ COPY --chown=citus:citus .psqlrc .
RUN sudo chown --from=root:root citus:citus -R ~ RUN sudo chown --from=root:root citus:citus -R ~
# sets default pg version # sets default pg version
RUN pgenv switch 18beta2 RUN pgenv switch 18beta3
# make connecting to the coordinator easy # make connecting to the coordinator easy
ENV PGPORT=9700 ENV PGPORT=9700

View File

@ -32,12 +32,12 @@ jobs:
style_checker_image_name: "ghcr.io/citusdata/stylechecker" style_checker_image_name: "ghcr.io/citusdata/stylechecker"
style_checker_tools_version: "0.8.18" style_checker_tools_version: "0.8.18"
sql_snapshot_pg_version: "17.5" sql_snapshot_pg_version: "17.5"
image_suffix: "-dev-219b87c" image_suffix: "-dev-8e2a1ce"
pg15_version: '{ "major": "15", "full": "15.13" }' pg15_version: '{ "major": "15", "full": "15.13" }'
pg16_version: '{ "major": "16", "full": "16.9" }' pg16_version: '{ "major": "16", "full": "16.9" }'
pg17_version: '{ "major": "17", "full": "17.5" }' pg17_version: '{ "major": "17", "full": "17.5" }'
pg18_version: '{ "major": "18", "full": "18beta2" }' pg18_version: '{ "major": "18", "full": "18beta3" }'
upgrade_pg_versions: "15.13-16.9-17.5-18beta2" upgrade_pg_versions: "15.13-16.9-17.5-18beta3"
steps: steps:
# Since GHA jobs need at least one step we use a noop step here. # Since GHA jobs need at least one step we use a noop step here.
- name: Set up parameters - name: Set up parameters