mongodb / mongo-hhvm-driver

MongoDB HHVM driver **Note, this driver is no longer maintained**
Apache License 2.0
34 stars 13 forks source link

Cannot complile on Travis (Linux) #163

Closed crodas closed 7 years ago

crodas commented 7 years ago

I'm writing a MongoDB ORM that runs directly on top of the MongoDB driver (no other library is needed).

It runs fine in PHP but for some odd reason I cannot install the HHVM driver (testing on Travis). Here is my build script and here is the building log

Am I doing something wrong?

jmikola commented 7 years ago

@derickr is aware of the Travis build issues and currently working through things. Progress is happening in the hhvm-on-travis branch on his fork.

crodas commented 7 years ago

Thanks @jmikola and @derickr ! I'll keep an eye on the progress.

derickr commented 7 years ago

The problem is really that Travis pulls in HHVM 3.6 - https://travis-ci.org/crodas/Tuicha/jobs/185271083#L153

You need at least HHVM 3.12 (or rather, 3.15). For that I believe, you need Trusty. Have a look at the .travis.yml file that I'm using: https://github.com/derickr/mongo-hhvm-driver/blob/hhvm-on-travis/.travis.yml

crodas commented 7 years ago

I'm closing this issue, it's working for me now. Thanks @derickr.