56 lines
2.9 KiB
YAML
56 lines
2.9 KiB
YAML
# This script is used by Travis CI to run automatically Continuous test integration
|
|
# from Dolibarr GitHub repository.
|
|
# Command run is phpunit
|
|
# For syntax, see http://about.travis-ci.org/docs/user/languages/php/
|
|
|
|
services:
|
|
- memcached # will start memcached
|
|
|
|
# This will tell travis to run phpunit
|
|
language: php
|
|
php:
|
|
- "5.4"
|
|
|
|
env:
|
|
- DB=mysql
|
|
# - DB=postgres
|
|
|
|
before_script:
|
|
- echo Start travis
|
|
- echo Current dir is `pwd`
|
|
- echo Home dir is `echo ~`
|
|
- echo Create dir /home/travis/build/Dolibarr/dolibarr/documents
|
|
- mkdir -p /home/travis/build/Dolibarr/dolibarr/documents; chmod a+rwx /home/travis/build/Dolibarr/dolibarr/documents;
|
|
- echo 'date.timezone = "Europe/Paris"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
|
- echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
|
- echo "extension = memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
|
- echo "extension = memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
|
- echo "extension = xdebug.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
|
|
- echo Init database
|
|
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS myapp_test;' -U postgres; fi"
|
|
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'CREATE DATABASE myapp_test;' -U postgres; fi"
|
|
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'DROP DATABASE IF EXISTS myapp_test;'; fi"
|
|
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE IF NOT EXISTS myapp_test;'; fi"
|
|
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -D myapp_test < /home/travis/build/Dolibarr/dolibarr/dev/initdata/mysqldump_dolibarr_3.4.0.sql; fi"
|
|
- echo Create config file htdocs/conf/conf.php
|
|
- echo '<?php ' > htdocs/conf/conf.php
|
|
- sh -c "if [ '$DB' = 'pgsql' ]; then echo '$'dolibarr_main_db_type=\'pgsql\'';' >> htdocs/conf/conf.php; fi"
|
|
- sh -c "if [ '$DB' = 'mysql' ]; then echo '$'dolibarr_main_db_type=\'mysqli\'';' >> htdocs/conf/conf.php; fi"
|
|
- echo '$'dolibarr_main_url_root=\'http://localhost/dolibarr\'';' >> htdocs/conf/conf.php
|
|
- echo '$'dolibarr_main_document_root=\'/home/travis/build/Dolibarr/dolibarr/htdocs\'';' >> htdocs/conf/conf.php
|
|
- echo '$'dolibarr_main_data_root=\'/home/travis/build/Dolibarr/dolibarr/documents\'';' >> htdocs/conf/conf.php
|
|
- echo '$'dolibarr_main_db_host=\'localhost\'';' >> htdocs/conf/conf.php
|
|
- echo '$'dolibarr_main_db_name=\'myapp_test\'';' >> htdocs/conf/conf.php
|
|
- echo '$'dolibarr_main_db_user=\'travis\'';' >> htdocs/conf/conf.php
|
|
- echo '$'dolibarr_main_authentication=\'dolibarr\'';' >> htdocs/conf/conf.php
|
|
- echo '?>' >> htdocs/conf/conf.php
|
|
- echo Show conf.php content
|
|
- cat htdocs/conf/conf.php
|
|
|
|
# Omitting "script:" will default to phpunit
|
|
# use the $DB env variable to determine the phpunit.xml to use
|
|
script: phpunit --configuration test/phpunit/phpunittest.xml --coverage-text test/phpunit/AllTests.php
|
|
|
|
after_script:
|
|
- echo End travis
|