mirror of
https://github.com/cytopia/devilbox.git
synced 2025-01-13 08:20:02 +00:00
13 lines
217 B
Bash
Executable File
13 lines
217 B
Bash
Executable File
#!/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
|