Compile and test Turbo on PHP 8.6 - #6437
Merged
Merged
Conversation
| turbo-compile: | ||
| name: "Compile Turbo Extension" | ||
| runs-on: ${{ matrix.target.runs-on }} | ||
| runs-on: ${{ matrix.php-version == '8.6' && matrix.target.family == 'gnu' && (matrix.target.name == 'linux-gnu-arm64' && 'ubuntu-22.04-arm' || 'ubuntu-22.04') || matrix.target.runs-on }} |
| # is the one that ships VS2022. | ||
| runs-on: "windows-2022" | ||
| # PHP 8.6's vs18 development packs need the VS2026 toolchain. | ||
| runs-on: ${{ matrix.php-version == '8.6' && 'windows-2025-vs2026' || 'windows-2022' }} |
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.
Compile and test Turbo for PHP 8.6 across the existing GNU, musl, macOS and Windows targets, and run the built extension in the official PHP prerelease Docker image.
The new jobs account for the dependencies currently available:
gnu-php8.6image are unavailable, preserving the GLIBC 2.34 compatibility floor.edge/testing, where the PHP 8.6 packages are published.php:8.6-rc-cli-bookwormwith mbstring added because the prerelease image omits it.Local validation: strict compilation and differential smoke/signature tests passed on arm64 macOS, GNU NTS/ZTS and Alpine. The Ubuntu-built extension passed the parser corpus and full suite in the official Docker prerelease image: 21,519 tests, 96,594 assertions, 68 skips. Self-analysis, actionlint and shell syntax checks pass. Windows runtime/development-pack downloads were verified against the published checksums; Windows compilation remains to be validated by CI.
No native source changes or Turbo version bump were needed.
Continues the Turbo work discussed in #6403.