i try use phpenv config_add ./new.php.ini in job for HHVM, but job is filed with message
phpenv config_add ./new.php.ini
cp: cannot create regular file `/home/travis/.phpenv/versions/hhvm/etc/conf.d': No such file or directory
How can I override some properties on travis-ci?
Create /etc/hhvm/php.ini, and put your settings in there.
/etc/hhvm/php.ini
You don't need to run pnpenv config_add in hhvm environment:
pnpenv config_add
before_script: - | if [[ $TRAVIS_PHP_VERSION = "hhv"* ]]; then cat new.php.ini >> /etc/hhvm/php.ini else phpenv config-add new.php.ini fi
Copyright © 2021 Jogjafile Inc.
Create
/etc/hhvm/php.ini
, and put your settings in there.