1
0
mirror of synced 2024-12-05 03:06:05 +03:00
doctrine2/.travis.yml

26 lines
835 B
YAML
Raw Normal View History

language: php
php:
- 5.3
- 5.4
- 5.5
2013-12-13 23:43:53 +04:00
- hhvm
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"
2013-09-07 15:21:02 +04:00
- composer install --prefer-dist --dev
script: phpunit --configuration tests/travis/$DB.travis.xml
2013-06-28 04:18:21 +04:00
after_script:
- php vendor/bin/coveralls -v