forked from jasder/antlr
10 lines
176 B
Bash
10 lines
176 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -euo pipefail
|
||
|
|
||
|
php_path=$(which php)
|
||
|
|
||
|
composer install -d ../runtime/PHP
|
||
|
|
||
|
mvn -q -DPHP_PATH="${php_path}" -Dparallel=methods -DthreadCount=4 -Dtest=php.* test
|