2011-11-13 20:44:37 +04:00
|
|
|
language: php
|
|
|
|
|
|
|
|
php:
|
|
|
|
- 5.3
|
|
|
|
- 5.4
|
2013-02-10 01:44:14 +04:00
|
|
|
- 5.5
|
2013-12-13 23:43:53 +04:00
|
|
|
- hhvm
|
2013-02-10 01:44:14 +04:00
|
|
|
|
2011-11-13 20:44:37 +04:00
|
|
|
env:
|
2014-03-01 21:32:56 +04:00
|
|
|
- DB=mysql
|
|
|
|
- DB=pgsql
|
|
|
|
- DB=sqlite
|
2011-11-13 20:44:37 +04:00
|
|
|
|
|
|
|
before_script:
|
|
|
|
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS doctrine_tests;' -U postgres; fi"
|
|
|
|
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS doctrine_tests_tmp;' -U postgres; fi"
|
|
|
|
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'create database doctrine_tests;' -U postgres; fi"
|
|
|
|
- sh -c "if [ '$DB' = 'pgsql' ]; then psql -c 'create database doctrine_tests_tmp;' -U postgres; fi"
|
|
|
|
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'create database IF NOT EXISTS doctrine_tests_tmp;create database IF NOT EXISTS doctrine_tests;'; fi"
|
2014-02-18 13:28:13 +04:00
|
|
|
- composer install --prefer-source --dev
|
2011-11-13 20:44:37 +04:00
|
|
|
|
2014-03-01 21:32:56 +04:00
|
|
|
script:
|
|
|
|
- ENABLE_SECOND_LEVEL_CACHE=0 ./vendor/bin/phpunit -v -c tests/travis/$DB.travis.xml --coverage-clover ./build/logs/clover.xml
|
|
|
|
- ENABLE_SECOND_LEVEL_CACHE=1 ./vendor/bin/phpunit -v -c tests/travis/$DB.travis.xml --coverage-clover ./build/logs/clover-slc.xml --exclude-group performance,non-cacheable,locking_functional
|
2013-06-28 04:18:21 +04:00
|
|
|
|
|
|
|
after_script:
|
|
|
|
- php vendor/bin/coveralls -v
|
2013-12-14 01:13:28 +04:00
|
|
|
|
|
|
|
matrix:
|
2014-01-08 23:19:10 +04:00
|
|
|
exclude:
|
|
|
|
- php: hhvm
|
2014-03-01 21:32:56 +04:00
|
|
|
env: DB=pgsql # driver currently unsupported by HHVM
|
2014-01-08 23:19:10 +04:00
|
|
|
- php: hhvm
|
2014-03-01 21:32:56 +04:00
|
|
|
env: DB=mysqli # driver currently unsupported by HHVM
|