-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
add php 7.3 to travis config #1394
Conversation
since php: nightly already use php 7.4dev
it seems php 7.4dev on nightly currently only on The details is as follow:
|
the reason seems by use
|
It looks like memcached is not supported on 7.3 or 7.4 yet ? :( |
yes, it seems not yet supported, but probably, we can manually install something like: - if [[ $TRAVIS_PHP_VERSION = 7.3 ]]; then git clone https://github.com/php-memcached-dev/php-memcached.git && cd php-memcached && phpize && ./configure && make && make install && echo "zend_extension = memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini && cd ..; fi worth a try ? |
with memcached not supported yet (per their website), I am not convinced that it makes sense to add 7.3 to the list of versions. We know it will fail. |
I only got reference from this https://blog.travis-ci.com/2017-06-19-trusty-updates-2017-Q2 . |
I see that you specified that the 7.3 build is allowed to fail, so it won't prevent us from moving forward with 7.1 & 7.2 ... will merge |
since php: nightly already use php 7.4dev
Checklist: