-
Notifications
You must be signed in to change notification settings - Fork 53
add composer.lock & update travis config #101
add composer.lock & update travis config #101
Conversation
6088a70
to
5c72af3
Compare
@stefanotorresi You should disable |
@thomasvargui In my opinion this travis error has nothing to do with this PR. It's related to https://pear.php.net/bugs/bug.php?id=21007 and found the way into the repo by #82, #74 and #52. The problem now is that a test for a race condition is using different PHP processes and installing apc_bc on PHP 7 requires an extension load order where it fails installed by pecl. On travis there is a hack that adds the extension two times. That worked but PHP triggers a warning on startup but the warning gets be detected now because PHPUnit needs to run this race condition test in an own process. If we fix the extension install / loading completely this issue should be gone |
fixed by installing also unsupported php 7 extentions |
bda31fe
to
c93ed95
Compare
@marc-mabe ping, I see from IRC that you're working on the same changes I'm doing atm :D let me handle this! |
@stefanotorresi ok I'll wait - You can check my changes here https://github.com/marc-mabe/zend-cache/tree/travis_apc_php7 the only issue I have is that in PHP-7 apc.so doesn't get loaded this way I think because I add it to |
12773b5
to
beb50e9
Compare
@marc-mabe should be good now! |
add env variable for apcu version fix apc and xcache loading remove redundant env variables fix apc extension loading make phpunit verbose fix secure env variable minor finishing touches
beb50e9
to
3509bbf
Compare
@stefanotorresi Looks much better now 👍 But I still have two questions:
|
We haven't announced it, but I've talked about it on IRC. Next minor/major versions of all components will be bumped to 5.6, as 5.5 goes EOL next month. @stefanotorresi is making that change along with the composer.lock additions. |
@weierophinney Thanks for the info! @stefanotorresi I did some additional changes:
You can take a look into the changes here https://github.com/marc-mabe/zend-cache/blob/hotfix/101/.travis.yml |
LGTM :) |
as per zendframework/zendframework#7660
also entails these changes: