mirror of
https://github.com/cytopia/devilbox.git
synced 2025-01-13 00:09:57 +00:00
13 lines
217 B
Plaintext
13 lines
217 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
if [ "$TRAVIS_PHP_VERSION" = "nightly" -o "$TRAVIS_PHP_VERSION" = "hhvm" -o "$TRAVIS_PHP_VERSION" = "7.0" ] ; then
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
pecl install runkit
|
||
|
|
||
|
phpenv config-add test/php-runkit.ini
|