forked from DevGroup-ru/yii2-frontend-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (31 loc) · 804 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: php
php:
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
fast_finish: true
allow_failures:
- php: hhvm
install:
- travis_retry composer self-update && composer --version
- travis_retry composer global require fxp/composer-asset-plugin:~1.0
- travis_retry composer install --prefer-dist --no-interaction --dev
script:
- vendor/bin/phpunit --coverage-clover=coverage.xml --verbose $PHPUNIT_FLAGS
after_script:
- |
if [ $TRAVIS_PHP_VERSION = '5.6' ]; then
pwd
travis_retry wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover coverage.xml
fi
cache:
- vendor
- $HOME/.composer/cache
after_success:
- |
if [ $TRAVIS_PHP_VERSION = '5.6' ]; then
bash <(curl -s https://codecov.io/bash)
fi