ci: add PostgreSQL 19beta1 to build/test matrix, bump minor versions#363
Draft
sfc-gh-dachristensen wants to merge 3 commits into
Draft
ci: add PostgreSQL 19beta1 to build/test matrix, bump minor versions#363sfc-gh-dachristensen wants to merge 3 commits into
sfc-gh-dachristensen wants to merge 3 commits into
Conversation
Bumps PG 16/17/18 to latest minors (16.14, 17.10, 18.4) and wires PG 19beta1 into the Dockerfile, CI matrices, install.sh, and docker docs/Taskfile. Code-level fixes for PG 19 are deliberately deferred; this commit just sets up the infrastructure so failures surface in CI. Note: 19beta1 is not yet published on ftp.postgresql.org as of this commit, so PG 19 image builds will 404 until the upstream tarball lands. Signed-off-by: David Christensen <david.christensen@snowflake.com>
The 19beta1 source tarball is not yet on ftp.postgresql.org, causing the PG19 image build to 404. Switch the PG19 source in docker/Dockerfile to a shallow git clone of postgres/postgres master and run autoconf before ./configure (the git tree ships no generated configure). Add autoconf to the almalinux and debian dependency lists. install.sh already builds PG19 from master via git, so this aligns the docker build with the install script. Signed-off-by: David Christensen <david.christensen@snowflake.com>
Oracle's /java/21/latest tarball just bumped past jdk-21.0.10, breaking the debian image build with "cannot stat '/usr/lib/jvm/jdk-21.0.10'". Read the top-level directory from the tarball instead of hardcoding the patch version, so future bumps don't break the build. Signed-off-by: David Christensen <david.christensen@snowflake.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
matrices, install.sh, and docker docs/Taskfile.
surface in CI and be addressed in follow-ups.
CI matrix changes
Note on 19beta1 availability
19beta1 has not yet been published on ftp.postgresql.org. Image builds for
PG 19 will 404 until upstream publishes; flip PG19_VERSION when it lands.
Test plan