8000 Test against PHP 7.3 on travis by WyriHaximus · Pull Request #174 · reactphp/event-loop · GitHub
[go: up one dir, main page]

Skip to content

Test against PHP 7.3 on travis #174

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 10, 2018
Merged
Changes from 1 commit
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
Prev Previous commit
Don't install ext-event and ext-ev loops on PHP 7.3
  • Loading branch information
WyriHaximus committed Nov 12, 2018
commit 7c919c44b1242073ee5606b4b0145ffbaf0babbc
9 changes: 6 additions & 3 deletions travis-init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,17 @@ if [[ "$TRAVIS_PHP_VERSION" != "hhvm" &&
"$TRAVIS_PHP_VERSION" != "hhvm-nightly" ]]; then

# install 'event' and 'ev' PHP extension
if [[ "$TRAVIS_PHP_VERSION" != "5.3" ]]; then
if [[ "$TRAVIS_PHP_VERSION" != "5.3" &&
"$TRAVIS_PHP_VERSION" != "7.3" ]]; then
echo "yes" | pecl install event
echo "yes" | pecl install ev
fi

# install 'libevent' PHP extension (does not support php 7)
if [[ "$TRAVIS_PHP_VERSION" != "7.0" &&
"$TRAVIS_PHP_VERSION" != "7.1" &&
"$TRAVIS_PHP_VERSION" != "7.2" ]]; then
"$TRAVIS_PHP_VERSION" != "7.2" &&
"$TRAVIS_PHP_VERSION" != "7.3" ]]; then
curl http://pecl.php.net/get/libevent-0.1.0.tgz | tar -xz
pushd libevent-0.1.0
phpize
Expand All @@ -28,7 +30,8 @@ if [[ "$TRAVIS_PHP_VERSION" != "hhvm" &&
# install 'libev' PHP extension (does not support php 7)
if [[ "$TRAVIS_PHP_VERSION" != "7.0" &&
"$TRAVIS_PHP_VERSION" != "7.1" &&
"$TRAVIS_PHP_VERSION" != "7.2" ]]; then
"$TRAVIS_PHP_VERSION" != "7.2" &&
"$TRAVIS_PHP_VERSION" != "7.3" ]]; then
git clone --recursive https://github.com/m4rw3r/php-libev
pushd php-libev
phpize
Expand Down
0