2014-11-28 09:11:06 +00:00
|
|
|
language: php
|
|
|
|
|
|
|
|
php:
|
2014-11-28 09:12:02 +00:00
|
|
|
- 5.4
|
|
|
|
- 5.5
|
|
|
|
- 5.6
|
2014-12-21 11:39:16 +00:00
|
|
|
- hhvm
|
2014-11-28 09:11:06 +00:00
|
|
|
|
2014-12-21 11:39:16 +00:00
|
|
|
sudo: false
|
2014-11-28 09:11:06 +00:00
|
|
|
|
2015-02-21 17:17:01 +00:00
|
|
|
install: travis_retry composer install --no-interaction --ignore-platform-reqs --no-scripts --prefer-source
|
2015-01-03 23:11:50 +00:00
|
|
|
|
|
|
|
before_script: php artisan cachet:one-click-deploy
|
2014-11-28 09:11:06 +00:00
|
|
|
|
2015-01-01 17:31:42 +00:00
|
|
|
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;'
|