Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
7b6dc2d
Build PHP binaries with Xdebug
fredrikekelund May 12, 2026
702ea22
WIP
fredrikekelund May 12, 2026
594e5af
New approach
fredrikekelund May 12, 2026
5c15545
Fix
fredrikekelund May 12, 2026
c0d6ba3
Address build log warnings
fredrikekelund May 12, 2026
0513325
WIP
fredrikekelund May 12, 2026
74e219d
WIP
fredrikekelund May 12, 2026
7ec141c
WIP
fredrikekelund May 12, 2026
f610b55
GitHub API token
fredrikekelund May 12, 2026
0d48dff
pkg-config
fredrikekelund May 12, 2026
d35d4ac
pkg-config
fredrikekelund May 12, 2026
a7aa765
Fix libcurl issue
fredrikekelund May 12, 2026
a65dfec
WIP
fredrikekelund May 12, 2026
beab364
Clean up
fredrikekelund May 12, 2026
8132a23
curl fix
fredrikekelund May 12, 2026
b2ac2c5
Embed curl
fredrikekelund May 12, 2026
695279f
More curl
fredrikekelund May 12, 2026
241cb89
Merge branch 'trunk' into rsm-2698-build-php-with-xdebug
fredrikekelund May 12, 2026
34f1d07
Normalize directory structure on macOS
fredrikekelund May 13, 2026
c606c6c
Name GitHub action run using inputs
fredrikekelund May 13, 2026
491ec37
Address review comments
fredrikekelund May 13, 2026
4d8caad
WIP
fredrikekelund May 13, 2026
477e6b1
Rely on existing spc tools where possible
fredrikekelund May 13, 2026
6298024
Fix extension smoke tests failing
fredrikekelund May 13, 2026
b9955ac
Fix xdebug extension testing
fredrikekelund May 13, 2026
630cc54
Cleanup
fredrikekelund May 13, 2026
c4582d4
curl smoke test fix
fredrikekelund May 13, 2026
cacc2cd
Bring back PHP version resolver
fredrikekelund May 13, 2026
a2c1065
Dynamically find latest extension versions on Windows
fredrikekelund May 13, 2026
b209699
Apply phar patch
fredrikekelund May 13, 2026
efc25d0
dom apparently also needs to be static
fredrikekelund May 13, 2026
bf47f9f
Fix phar issue (again)
fredrikekelund May 13, 2026
e60bcae
Make xdebug the only shared extension
fredrikekelund May 13, 2026
28d14f5
Docs
fredrikekelund May 13, 2026
a447f4a
[WIP] Load PHP extensions properly on Windows
fredrikekelund May 13, 2026
b269191
Update the extension list
fredrikekelund May 13, 2026
70598be
Merge branch 'trunk' into rsm-2698-build-php-with-xdebug
fredrikekelund May 13, 2026
b25d8e5
Merge branch 'rsm-2698-build-php-with-xdebug' into f26d/load-xdebug
fredrikekelund May 13, 2026
2cd6ea0
Merge branch 'trunk' into f26d/load-xdebug
fredrikekelund May 19, 2026
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Cleanup
  • Loading branch information
fredrikekelund committed May 13, 2026
commit 630cc54e2ea613cd4ac25e832764df95ff7cbc76
16 changes: 2 additions & 14 deletions .github/workflows/build-php-cli-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,20 +86,6 @@ jobs:
ref: ${{ env.SPC_REF }}
path: .cache/static-php-cli

- name: Validate PHP version
shell: bash
run: |
set -euo pipefail

if [[ ! "$PHP_VERSION" =~ ^8\.(2|3|4|5)\.[0-9]+$ ]]; then
echo "Unsupported PHP version: $PHP_VERSION" >&2
echo "Supported PHP minors: 8.2, 8.3, 8.4, 8.5" >&2
exit 1
fi

php_minor="${PHP_VERSION%.*}"
echo "PHP_MINOR=$php_minor" >> "$GITHUB_ENV"

- name: Setup PHP for static-php-cli
if: runner.os == 'macOS'
uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -278,6 +264,8 @@ jobs:
run: |
$phpMinor = $env:PHP_MINOR
switch ( $phpMinor ) {
'8.0' { $vsVersion = 'vs16' }
'8.1' { $vsVersion = 'vs16' }
'8.2' { $vsVersion = 'vs16' }
'8.3' { $vsVersion = 'vs16' }
'8.4' { $vsVersion = 'vs17' }
Expand Down