Query/.travis.yml

30 lines
595 B
YAML
Raw Normal View History

2015-11-10 08:26:14 -05:00
sudo: false
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:
- 7.2
- 7.3
- 7.4
2015-06-04 15:24:44 -04:00
- nightly
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
- cd build
2018-01-22 12:44:09 -05:00
- ../vendor/bin/phpunit -c phpunit.xml --coverage-clover build/logs/clover.xml
- 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