1
0
mirror of synced 2025-02-02 21:41:45 +03:00
doctrine2/.travis.yml

32 lines
776 B
YAML
Raw Normal View History

language: php
php:
- 5.4
- 5.5
- 5.6
2017-06-22 07:57:54 +02:00
- 7.0
env:
2014-03-01 12:32:56 -05:00
- DB=mysql
- DB=pgsql
- DB=sqlite
before_script:
- if [[ $TRAVIS_PHP_VERSION = '5.6' && $DB = 'sqlite' ]]; then PHPUNIT_FLAGS="--coverage-clover ./build/logs/clover.xml"; else PHPUNIT_FLAGS=""; fi
2017-06-22 07:46:21 +02:00
- if [[ $PHPUNIT_FLAGS == "" ]]; then phpenv config-rm xdebug.ini; fi
- composer self-update
- composer install --prefer-source --dev
script:
- 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
2013-12-13 22:13:28 +01:00
matrix:
2017-06-22 07:46:21 +02:00
fast_finish: true
allow_failures:
2017-06-22 07:57:54 +02:00
- php: 7.0
2017-06-22 07:46:21 +02:00
cache:
directories:
- $HOME/.composer/cache