Skip to content

[5.1] Fix some functions that have been replaced (#5480) #81

[5.1] Fix some functions that have been replaced (#5480)

[5.1] Fix some functions that have been replaced (#5480) #81

Workflow file for this run

name: Xdebug Support Tests
on: [push, pull_request]
jobs:
tests:
if: "!contains(github.event.head_commit.message, '--filter=') || contains(github.event.head_commit.message, '[xdebug]')"
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2', '8.3', '8.4-dev']
name: PHP ${{ matrix.php }} - Swoole
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: phpize
ini-values: extension=swoole
coverage: xdebug
- name: Build Swoole
run: |
phpize
./configure
make -j$(nproc)
sudo make install
- name: Check extension conflict
run: |
php -v
php -m
php --ri swoole