Skip to content

Commit 012461f

Browse files
committed
Makefile: disable memory limit for phpdbg run.
This will stop it from failing on allowed memory exhausted.
1 parent 80b3668 commit 012461f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
jobs:
1010
selftest:
11-
name: Self-test
11+
name: CI test (make validate)
1212
runs-on: ubuntu-18.04
1313

1414
steps:

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ test-phpunit: vendor/autoload.php
1919
validate: build/php-cs-fixer.phar vendor/autoload.php psalm check-docs
2020
$(FIXER) fix --dry-run --stop-on-violation
2121
$(COMPOSER) validate
22-
phpdbg -qrr $(PHPUNIT) --coverage-text
22+
phpdbg -d memory_limit=-1 -qrr $(PHPUNIT) --coverage-text
2323

2424
.PHONY:psalm
2525
psalm: build/psalm.phar

0 commit comments

Comments
 (0)