phpmyadmin/test/install-runkit
Michal Čihař 5411bcdd2b Runkit does not support PHP 7 (yet)
Signed-off-by: Michal Čihař <michal@cihar.com>
2015-02-26 15:42:56 +01:00

25 lines
362 B
Bash
Executable File

#!/bin/bash
if [ $TRAVIS_PHP_VERSION = "nightly" ] ; then
exit 0
fi
set -e
git clone --depth=1 git://github.com/zenovich/runkit.git
pushd runkit
if [ $TRAVIS_PHP_VERSION = "5.6" ] ; then
wget https://github.com/zenovich/runkit/pull/73.diff
patch -p1 < 73.diff
fi
phpize
./configure
make
make install
popd
phpenv config-add test/travis.php.ini