Merged
Conversation
for stack(s) cflinuxfs4, cflinuxfs5
…edis fixture version
This was referenced Apr 9, 2026
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.
Add PHP 8.2.30 with cflinuxfs5 support
Changes
php 8.2.30artifact forcflinuxfs5php 8.2.30cflinuxfs4 artifact (fixed broken build — see below)fixtures/with_phpredisto use{PHP_82_LATEST}instead of hardcoded8.2.28, which is no longer in the manifestWhy the cflinuxfs4 artifact was replaced
The original
php_8.2.30_linux_x64_cflinuxfs4_66c78136.tgzcontained an absolute symlink:libbuildpack rejects absolute symlinks as a security measure, causing:
Root cause:
binary-builder'ssetupTar()usescp -ato bundle system libraries into the artifact, which preserves host symlinks verbatim. On the cflinuxfs4 build host,/usr/lib/x86_64-linux-gnu/libgpg-error.sohappens to be an absolute symlink; on cflinuxfs5 it is relative. cflinuxfs5 was unaffected as it is relative.The broken artifact was manually repacked with the symlink corrected to relative (
libgpg-error.so → libgpg-error.so.0) and re-uploaded to S3 asphp_8.2.30_linux_x64_cflinuxfs4_b5ea149e.tgz.Also updated
fixtures/with_phpredis/.bp-config/options.jsonfrom the hardcoded"PHP_VERSION": "8.2.28"to"{PHP_82_LATEST}", since 8.2.28 is no longer in the manifest.A fix to
binary-builderhas been submitted to prevent recurrence:https://github.com/cloudfoundry/binary-builder/pull/new/fix-absolute-symlinks-in-php-artifact