Conversation
ZPascal
marked this pull request as draft
September 21, 2026 10:22
ZPascal
force-pushed
the
issue-98
branch
2 times, most recently
from
September 21, 2026 12:05
4fe1601 to
aee3d10
Compare
ZPascal
force-pushed
the
issue-98
branch
2 times, most recently
from
September 22, 2026 21:24
fdb8c5d to
c3cf45e
Compare
…tu Resolute
libicu-dev was dropped from the Ubuntu Resolute stemcell, breaking
postgres-16/17/18 compilation which requires ICU at build time.
- Add postgres-libicu BOSH package that compiles ICU4C 78.3 from a vendored
source tarball (static-only, --disable-shared) so postgres links ICU
statically with no runtime .so dependency
- Update postgres-15, -16, -17, -18 to support aarch64 in packaging scripts
- Update postgres-16, -17, -18 to declare postgres-libicu as a dependency
and use ${BOSH_PACKAGES_PATH:-/var/vcap/packages}/postgres-libicu in
configure flags with -lstdc++ to satisfy C++ runtime symbols from static ICU
Closes #98
Jobsby
reviewed
Sep 23, 2026
Jobsby
left a comment
Contributor
There was a problem hiding this comment.
Please check the ICU release version and name changes between 77 and 78.
Contributor
Author
Thank you for the notification. We should handle this in a future-proof way, and I've adjusted the CI/CD job. I've also added SHA validation support. |
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.
Ubuntu Resolute dropped
libicu-dev, which broke postgres-16, 17, and 18. This adds a newpostgres-libicuBOSH package that compiles ICU4C from source so postgres doesn't have to rely on the system library being present.The postgres-16/17/18 packaging scripts now point their configure flags at
${BOSH_PACKAGES_PATH}/postgres-libicuand declare it as a dependency. postgres-15 is unaffected — it doesn't use ICU.Also fixes the shebang pattern in those packaging scripts:
#!/bin/bash -exuis silently ignored by BOSH, replaced with#!/bin/bash+set -euo pipefail.On the CI side: Adds an
icu-srcConcourse resource tracking ICU4C releases on GitHub, abump-libicu-packagetask to automate blob bumps, and checksum validation viaSHASUM512.txt(same pattern as the existing yq bump task).Closes #98
Test plan
bump-packagesCI job and verifybump-libicu-packagecompletes cleanlyinitdbandpg_ctl startsucceed.alibs in the ICU install target (--disable-shared), no.soleakage