Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions travis-init.sh
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
#!/bin/bash

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

fi

#set -e
Expand Down