Skip to content

Commit 88698cb

Browse files
committed
build: Fix PHP builds
Signed-off-by: Dmitry Dygalo <dmitry@dygalo.dev>
1 parent e119e8a commit 88698cb

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ jobs:
569569
strategy:
570570
fail-fast: false
571571
matrix:
572-
os: [ubuntu-22.04, macos-15]
572+
os: [ubuntu-24.04, macos-15]
573573
php-version: ["8.2", "8.3", "8.4"]
574574
clang: ["20"]
575575
name: PHP ${{ matrix.php-version }} on ${{ matrix.os }}
@@ -579,12 +579,12 @@ jobs:
579579
- uses: dtolnay/rust-toolchain@stable
580580
- name: Setup LLVM & Clang
581581
uses: KyleMayes/install-llvm-action@v2
582-
if: matrix.os == 'ubuntu-22.04'
582+
if: matrix.os == 'ubuntu-24.04'
583583
with:
584584
version: ${{ matrix.clang }}
585585
directory: ${{ runner.temp }}/llvm-${{ matrix.clang }}
586586
- name: Configure Clang
587-
if: matrix.os == 'ubuntu-22.04'
587+
if: matrix.os == 'ubuntu-24.04'
588588
run: |
589589
echo "LIBCLANG_PATH=${{ runner.temp }}/llvm-${{ matrix.clang }}/lib" >> $GITHUB_ENV
590590
echo "LLVM_CONFIG_PATH=${{ runner.temp }}/llvm-${{ matrix.clang }}/bin/llvm-config" >> $GITHUB_ENV
@@ -593,6 +593,8 @@ jobs:
593593
php-version: ${{ matrix.php-version }}
594594
extensions: mbstring
595595
coverage: none
596+
env:
597+
debug: true
596598
- name: Build PHP extension
597599
run: |
598600
export PHP_CONFIG=$(which php-config)

0 commit comments

Comments
 (0)