25 lines
828 B
YAML
25 lines
828 B
YAML
language: php
|
||
|
||
php:
|
||
- 5.3
|
||
- 5.4
|
||
- 5.5
|
||
|
||
matrix:
|
||
allow_failures:
|
||
- php: 5.5
|
||
env:
|
||
- DB=mysql
|
||
- DB=pgsql
|
||
- DB=sqlite
|
||
|
||
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"
|
||
- composer install --prefer-source --dev
|
||
|
||
script: phpunit --configuration tests/travis/$DB.travis.xml
|