2011-11-13 17:44:37 +01:00
|
|
|
language: php
|
|
|
|
|
|
|
|
php:
|
|
|
|
- 5.3
|
|
|
|
- 5.4
|
2013-02-09 22:44:14 +01:00
|
|
|
- 5.5
|
2013-12-13 11:43:53 -08:00
|
|
|
- hhvm
|
2013-02-09 22:44:14 +01:00
|
|
|
|
2011-11-13 17:44:37 +01:00
|
|
|
env:
|
2013-02-13 20:42:13 -02:00
|
|
|
- DB=mysql ENABLE_SECOND_LEVEL_CACHE=1
|
|
|
|
- DB=pgsql ENABLE_SECOND_LEVEL_CACHE=1
|
|
|
|
- DB=sqlite ENABLE_SECOND_LEVEL_CACHE=1
|
|
|
|
- DB=mysql ENABLE_SECOND_LEVEL_CACHE=0
|
|
|
|
- DB=pgsql ENABLE_SECOND_LEVEL_CACHE=0
|
|
|
|
- DB=sqlite ENABLE_SECOND_LEVEL_CACHE=0
|
2011-11-13 17:44:37 +01: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"
|
2013-09-07 13:21:02 +02:00
|
|
|
- composer install --prefer-dist --dev
|
2011-11-13 17:44:37 +01:00
|
|
|
|
2013-02-13 20:42:13 -02:00
|
|
|
script: phpunit -v --configuration tests/travis/$DB.travis.xml
|
2013-06-27 20:18:21 -04:00
|
|
|
|
|
|
|
after_script:
|
|
|
|
- php vendor/bin/coveralls -v
|
2013-12-13 22:13:28 +01:00
|
|
|
|
|
|
|
matrix:
|
2013-12-14 12:40:59 +01:00
|
|
|
allow_failures:
|
2013-12-13 22:13:28 +01:00
|
|
|
- php: hhvm
|
2014-01-08 20:19:10 +01:00
|
|
|
exclude:
|
|
|
|
- php: hhvm
|
|
|
|
env: DB=pgsql ENABLE_SECOND_LEVEL_CACHE=0 # driver currently unsupported by HHVM
|
|
|
|
- php: hhvm
|
|
|
|
env: DB=pgsql ENABLE_SECOND_LEVEL_CACHE=1 # driver currently unsupported by HHVM
|
|
|
|
- php: hhvm
|
|
|
|
env: DB=mysqli ENABLE_SECOND_LEVEL_CACHE=0 # driver currently unsupported by HHVM
|
|
|
|
- php: hhvm
|
|
|
|
env: DB=mysqli ENABLE_SECOND_LEVEL_CACHE=1 # driver currently unsupported by HHVM
|
|
|
|
|