-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.travis.yml
46 lines (36 loc) · 1.03 KB
/
.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
39
40
41
42
43
44
45
46
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
# faster builds on new travis setup not using sudo
sudo: false
# cache vendor dirs
cache:
directories:
# - cubrid/9.3.0
- vendor
- $HOME/.composer/cache
install:
- travis_retry composer self-update && composer --version
- travis_retry composer global require "fxp/composer-asset-plugin:~1.1.0"
- travis_retry composer install --prefer-source
- export PATH="$HOME/.composer/vendor/bin:$PATH"
before_script:
# show some versions and env information
- php -r "echo INTL_ICU_VERSION . \"\n\";"
- |
if [ $TRAVIS_PHP_VERSION = '5.6' ]; then
PHPUNIT_FLAGS="--coverage-clover=coverage.clover"
fi
script:
- phpunit --coverage-clover=coverage.xml --bootstrap tests/bootstrap.php tests
after_script:
- |
if [ $TRAVIS_PHP_VERSION = '5.6' ]; then
travis_retry wget https://scrutinizer-ci.com/ocular.phar
php ocular.phar code-coverage:upload --format=php-clover coverage.clover
fi
after_success:
- bash <(curl -s https://codecov.io/bash)