I tried the configuration below and attempted to run unit tests that connect demodb
database on port 30000
or 33000
with no success.
language: php
php:
- 5.4
- 5.5
install:
- echo 'yes' | sudo add-apt-repository ppa:cubrid/cubrid
- sudo apt-get update
- sudo apt-get install cubrid
- /etc/profile.d/cubrid.sh
- sudo apt-get install cubrid-demodb
- sudo apt-get install php5-cubrid
- echo '/opt/cubrid/' | pecl install pdo_cubrid
- /etc/profile.d/cubrid.sh
script: phpunit --group travis
Connection string looks like this: cubrid:host=localhost;port=30000;dbname=demodb
. Any ideas how to configure CUBRID database to run on Travis CI? Did someone managed that?