mail/.travis.yml

53 строки
1.4 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-05-04 00:19:04 +03:00
- hhvm
2015-04-20 22:45:33 +03:00
env:
global:
2015-05-04 00:23:51 +03:00
- CORE_BRANCH=master
- secure: AaTeRG3kL/LeMOcMgul08EUBM7Kdtrkz9EAGPauKdxXbxggP0j5SxN8ciYxc8CiVni0CYJofW07YjG6tXqhvHeMINHx8Q+5KUUfiLwNrLgl1sMkh7vPR9EA5Z1Y8Nz4N1Qt7zxpqWKPHUsjUNFWxP2TPHEq2FEOGeKbsI7GOYas=
- secure: S5agbWaWSLgbujsVhZB9WkCAM0ris8uh9hPnspYw48bolkMhknJ7JxOWGV4rOcJ52kdOgifFRE9XYi65RFLL8zuaZDBU2zFoXO3fpatziYEiIWnxVrkogw1pnh/FeRnrUld+QDykFyUcfSGdFRw5R5FuZHrxe+Q5bHfiEjh4hlE=
matrix:
- DB=sqlite
2015-05-04 00:19:04 +03:00
branches:
only:
- master
2015-05-04 00:19:04 +03:00
- /^stable\d*$/
2015-04-28 14:08:40 +03:00
before_install:
2015-04-28 14:08: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
2015-05-04 00:19:04 +03:00
script:
2015-05-04 00:19:04 +03:00
# Test lint
2015-04-28 14:08:40 +03:00
- cd apps/mail
- find . -name \*.php -not -path './vendor/*' -exec php -l "{}" \;
2015-05-04 00:19:04 +03:00
# Run phpunit tests
2015-04-28 14:08:40 +03:00
- cd tests
- phpunit --configuration phpunit.xml
2015-05-04 00:19:04 +03:00
# Create coverage report
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then wget https://scrutinizer-ci.com/ocular.phar; fi"
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then php ocular.phar code-coverage:upload --format=php-clover clover.xml; fi"
matrix:
include:
- php: 5.4
env: DB=mysql
- php: 5.4
env: DB=pgsql
2015-05-04 00:23:51 +03:00
- php: 5.4
env: "DB=mysql CORE_BRANCH=stable8"
allow_failures:
- php: hhvm
fast_finish: true