12 lines
160 B
Bash
Executable File
12 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
|
|
ant locales
|
|
|
|
export PHPUNIT_ARGS="--exclude-group selenium"
|
|
|
|
if [ $TRAVIS_PHP_VERSION = "hhvm" ] ; then
|
|
ant phpunit-hhvm
|
|
else
|
|
ant phpunit
|
|
fi
|