Skip to content

Commit

Permalink
Prevent ext-event 2.4.0RC1 and use 2.3.0 instead
Browse files Browse the repository at this point in the history
PHP 7.2 in combination with ext-event 2.4.0RC1 throws exceptions with invalid file descriptors, while everything works fine with 2.3.0 or PHP < 7.2.

This is a temporary fix to get the build green again.

Relates to #221.
  • Loading branch information
kelunik committed Apr 30, 2018
1 parent ab9011f commit 8283532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion travis/install-event.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env bash

curl -LS https://pecl.php.net/get/event | tar -xz \
curl -LS https://pecl.php.net/get/event-2.3.0 | tar -xz \
&& pushd event-* \
&& phpize \
&& ./configure --with-event-core --with-event-extra --with-event-pthreads \
Expand Down

0 comments on commit 8283532

Please sign in to comment.