2011-11-13 17:44:37 +01:00
|
|
|
language: php
|
|
|
|
|
|
|
|
php:
|
|
|
|
- 5.4
|
2013-02-09 22:44:14 +01:00
|
|
|
- 5.5
|
2014-05-11 17:51:23 +02:00
|
|
|
- 5.6
|
2013-12-13 11:43:53 -08:00
|
|
|
- hhvm
|
2014-05-11 17:51:23 +02:00
|
|
|
- hhvm-nightly
|
2013-02-09 22:44:14 +01:00
|
|
|
|
2011-11-13 17:44:37 +01:00
|
|
|
env:
|
2014-03-01 12:32:56 -05:00
|
|
|
- DB=mysql
|
|
|
|
- DB=pgsql
|
|
|
|
- DB=sqlite
|
2011-11-13 17:44:37 +01:00
|
|
|
|
|
|
|
before_script:
|
2015-01-14 23:08:15 +01:00
|
|
|
- if [[ $TRAVIS_PHP_VERSION = '5.6' && $DB = 'sqlite' ]]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; else PHPUNIT_FLAGS=""; fi
|
|
|
|
- if [ $DB = 'pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS doctrine_tests;' -U postgres; fi
|
|
|
|
- if [ $DB = 'pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS doctrine_tests_tmp;' -U postgres; fi
|
|
|
|
- if [ $DB = 'pgsql' ]; then psql -c 'create database doctrine_tests;' -U postgres; fi
|
|
|
|
- if [ $DB = 'pgsql' ]; then psql -c 'create database doctrine_tests_tmp;' -U postgres; fi
|
|
|
|
- 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 10:28:13 +01:00
|
|
|
- composer install --prefer-source --dev
|
2011-11-13 17:44:37 +01:00
|
|
|
|
2014-03-01 12:32:56 -05:00
|
|
|
script:
|
2015-01-14 23:08:15 +01:00
|
|
|
- ENABLE_SECOND_LEVEL_CACHE=0 ./vendor/bin/phpunit -v -c tests/travis/$DB.travis.xml $PHPUNIT_FLAGS
|
|
|
|
- ENABLE_SECOND_LEVEL_CACHE=1 ./vendor/bin/phpunit -v -c tests/travis/$DB.travis.xml --exclude-group performance,non-cacheable,locking_functional
|
2013-06-27 20:18:21 -04:00
|
|
|
|
|
|
|
after_script:
|
|
|
|
- php vendor/bin/coveralls -v
|
2013-12-13 22:13:28 +01:00
|
|
|
|
|
|
|
matrix:
|
2014-01-08 20:19:10 +01:00
|
|
|
exclude:
|
|
|
|
- php: hhvm
|
2014-03-01 12:32:56 -05:00
|
|
|
env: DB=pgsql # driver currently unsupported by HHVM
|
2014-01-08 20:19:10 +01:00
|
|
|
- php: hhvm
|
2014-03-01 12:32:56 -05:00
|
|
|
env: DB=mysqli # driver currently unsupported by HHVM
|
2014-05-11 17:51:23 +02:00
|
|
|
- php: hhvm-nightly
|
|
|
|
env: DB=pgsql # driver currently unsupported by HHVM
|
|
|
|
- php: hhvm-nightly
|
|
|
|
env: DB=mysqli # driver currently unsupported by HHVM
|
2014-06-07 15:11:51 +02:00
|
|
|
allow_failures:
|
|
|
|
- php: hhvm-nightly # hhvm-nightly currently chokes on composer installation
|