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

41 lines
1.4 KiB
YAML
Raw Normal View History

language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
2013-12-13 23:43:53 +04:00
- hhvm
- hhvm-nightly
env:
2014-03-01 21:32:56 +04:00
- 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
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:
exclude:
- php: hhvm
2014-03-01 21:32:56 +04:00
env: DB=pgsql # driver currently unsupported by HHVM
- php: hhvm
2014-03-01 21:32:56 +04:00
env: DB=mysqli # driver currently unsupported by HHVM
- php: hhvm-nightly
env: DB=pgsql # driver currently unsupported by HHVM
- php: hhvm-nightly
env: DB=mysqli # driver currently unsupported by HHVM