Skip to content

Commit

Permalink
Remove -n option from CI PHP commands
Browse files Browse the repository at this point in the history
The -n option, which disables loading of php.ini, was removed from PHP commands in the CI workflow to ensure that the necessary configurations and extensions are loaded. This change helps avoid potential issues related to missing configurations during test executions.
  • Loading branch information
koriym committed Dec 1, 2024
1 parent 44a9c19 commit e3d34cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration-pecl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
--leak-check=full \
--show-leak-kinds=all \
--track-origins=yes \
php -n \
php \
-d extension=./ext-rayaop/modules/rayaop.so \
demo/05-pecl.php
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
--verbose \
--error-exitcode=0 \
--log-file=valgrind.log \
php -n \
php \
-d extension=./ext-rayaop/modules/rayaop.so \
-d memory_limit=256M \
vendor/bin/phpunit \
Expand Down

0 comments on commit e3d34cb

Please sign in to comment.