fix: temporarily disable PostGIS trunk build - #159
Merged
Merged
Conversation
PostGIS periodically fails to build against PostgreSQL trunk (e.g. it hasn't caught up to a new major version yet, or trips on an in-development API change). Because minimal, standard, and postgis are all built by the same `docker buildx bake` invocation, a PostGIS failure currently fails the whole build-pg job -- blocking minimal and standard from being pushed, and preventing the E2E job from running at all. Remove `postgis` from the default bake matrix, and the corresponding tag overrides in build.yml / build-commitfest.yml, until the build is split so that a PostGIS failure can no longer block the rest of the pipeline. The `postgis` Dockerfile stage itself is untouched. Refs #158 Assisted-by: Claude Signed-off-by: Gabriele Bartolini <gabriele.bartolini@enterprisedb.com>
5 tasks
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
postgisfrom the defaultdocker buildx bakematrix, and the corresponding tag overrides inbuild.yml/build-commitfest.yml.minimal/standard, a PostGIS failure was blocking image publishing and E2E testing for the whole pipeline.postgisDockerfile stage itself is untouched — this only stops it being built automatically.Test plan
docker buildx bake --printlocally confirms onlyminimalandstandardtargets remain in the default group.build.ymlandbuild-commitfest.yml.minimal/standardsuccessfully.Assisted-by: Claude