mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-16 21:18:19 +01:00
20 lines
658 B
YAML
20 lines
658 B
YAML
language: php
|
|
|
|
php:
|
|
- 5.5.9
|
|
- 5.5
|
|
- 5.6
|
|
- hhvm
|
|
|
|
sudo: false
|
|
|
|
install: travis_retry composer install --no-interaction --ignore-platform-reqs --no-scripts --prefer-source
|
|
|
|
script:
|
|
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "hhvm" ]; then vendor/bin/phpunit; fi;'
|
|
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then vendor/bin/phpunit --coverage-clover build/logs/clover.xml; fi;'
|
|
|
|
after_script:
|
|
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi;'
|
|
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi;'
|