mail/.travis.yml

41 строка
1.1 KiB
YAML
Исходник Обычный вид История

2013-12-30 22:32:48 +04:00
language: php
php:
- 5.4
2015-04-20 22:45:33 +03:00
- 5.5
2015-04-20 23:09:57 +03:00
- 5.6
2015-04-20 22:45:33 +03:00
env:
global:
- CORE_BRANCH=master
- secure: AaTeRG3kL/LeMOcMgul08EUBM7Kdtrkz9EAGPauKdxXbxggP0j5SxN8ciYxc8CiVni0CYJofW07YjG6tXqhvHeMINHx8Q+5KUUfiLwNrLgl1sMkh7vPR9EA5Z1Y8Nz4N1Qt7zxpqWKPHUsjUNFWxP2TPHEq2FEOGeKbsI7GOYas=
- secure: S5agbWaWSLgbujsVhZB9WkCAM0ris8uh9hPnspYw48bolkMhknJ7JxOWGV4rOcJ52kdOgifFRE9XYi65RFLL8zuaZDBU2zFoXO3fpatziYEiIWnxVrkogw1pnh/FeRnrUld+QDykFyUcfSGdFRw5R5FuZHrxe+Q5bHfiEjh4hlE=
matrix:
- DB=sqlite
branches:
only:
- master
- stable7
before_install:
2015-04-25 22:47:40 +03:00
- composer self-update
- composer install
- wget https://raw.githubusercontent.com/owncloud/administration/master/travis-ci/before_install.sh
- bash ./before_install.sh mail $CORE_BRANCH $DB
- cd ../core
- php occ app:enable mail
script:
- cd apps/mail
- sh -c "if [ '$DB' = 'sqlite' ]; then ant test; fi"
- cd tests
- phpunit --configuration phpunit.xml
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover clover.xml
matrix:
include:
- php: 5.4
env: DB=mysql
- php: 5.4
env: DB=pgsql
allow_failures:
- php: hhvm
fast_finish: true