Skip to content

Commit 5846ad5

Browse files
committed
fixup! Attempt at fixing pcntl in tests
Signed-off-by: Côme Chilliet <[email protected]>
1 parent cecb64c commit 5846ad5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/phpunit-mysql.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,17 @@ jobs:
4747
with:
4848
php-version: ${{ matrix.php-versions }}
4949
tools: phpunit
50-
extensions: mbstring, iconv, fileinfo, intl, mysql, pdo_mysql, pcntl-php/php-src@PHP-${{ matrix.php }}
50+
extensions: mbstring, iconv, fileinfo, intl, mysql, pdo_mysql, pcntl-php/php-src@PHP-${{ matrix.php-versions }}
5151
coverage: none
5252
update: true
5353
ini-file: development
5454
env:
5555
PCNTL_PATH: ext/pcntl
5656
PCNTL_CONFIGURE_OPTS: '--enable-pcntl'
57-
- run: |
58-
echo 'extension=pcntl.so' | sudo tee -a /etc/php/${{ matrix.php }}/fpm/conf.d/10-pcntl.ini
57+
58+
- name: Activate pcntl extension
59+
run: |
60+
echo 'extension=pcntl.so' | sudo tee -a /etc/php/${{ matrix.php-versions }}/fpm/conf.d/10-pcntl.ini
5961
6062
- name: composer i
6163
run: |

0 commit comments

Comments
 (0)