Skip to content

Commit 5c87ca9

Browse files
authored
Merge pull request #28 from WyriHaximus-labs/dont-install-eio-on-nightly
EIO supports PHP 7 these days, but breaks on nightly
2 parents 7e5b70f + f16fa53 commit 5c87ca9

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

travis-init.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
#!/bin/bash
22

33
if [[ "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then
4-
# install 'eio' PHP extension (does not support php 7)
5-
if [[ "$TRAVIS_PHP_VERSION" != "7.0" ]]; then
4+
# install 'eio' PHP extension (does not support nightly)
5+
if [[ "$TRAVIS_PHP_VERSION" != "nightly" ]]; then
66
yes "" | pecl install eio
7-
echo "extension=eio.so" >> "$(php -r 'echo php_ini_loaded_file();')"
87
fi
9-
108
fi
119

1210
#set -e

0 commit comments

Comments
 (0)