2015-11-10 08:26:14 -05:00
|
|
|
sudo: false
|
2015-07-17 15:38:06 -04:00
|
|
|
|
2012-03-22 15:07:27 -04:00
|
|
|
language: php
|
2012-03-22 15:21:59 -04:00
|
|
|
|
2012-03-23 09:34:29 -04:00
|
|
|
php:
|
2016-09-07 13:10:03 -04:00
|
|
|
- 7.1
|
2018-01-19 10:53:40 -05:00
|
|
|
- 7.2
|
2015-06-04 15:24:44 -04:00
|
|
|
- nightly
|
2014-02-06 20:01:31 -05:00
|
|
|
|
2012-03-22 15:59:03 -04:00
|
|
|
before_script:
|
2014-04-15 16:34:33 -04:00
|
|
|
- psql -c 'DROP DATABASE IF EXISTS test;' -U postgres
|
|
|
|
- psql -c 'create database test;' -U postgres
|
|
|
|
- mysql -e 'create database IF NOT EXISTS test;'
|
2016-10-12 22:22:58 -04:00
|
|
|
- composer install
|
2012-03-22 15:21:59 -04:00
|
|
|
|
2014-02-25 11:59:28 -05:00
|
|
|
script:
|
|
|
|
- mkdir -p build/logs
|
2015-11-10 21:03:50 -05:00
|
|
|
- cd build
|
2018-01-22 12:44:09 -05:00
|
|
|
- ../vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml
|
2015-11-10 21:03:50 -05:00
|
|
|
- cd ../
|
2014-02-25 11:59:28 -05:00
|
|
|
|
|
|
|
after_script:
|
2014-03-20 10:49:15 -04:00
|
|
|
- wget https://scrutinizer-ci.com/ocular.phar
|
2015-08-25 16:52:15 -04:00
|
|
|
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
2016-10-12 22:26:14 -04:00
|
|
|
- php: nightly
|