-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
61 lines (53 loc) · 1.36 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
language: php
sudo: required
php:
- 5.6
- 7.0
- 7.1
- 7.2
- 7.3
- hhvm
- nightly
# fails with the message "HHVM nightly is no longer supported on Ubuntu Precise"
#- hhvm-nightly
matrix:
fast_finish: true
include:
- php: 5.3
dist: precise
- php: 5.4
dist: trusty
- php: 5.5
dist: trusty
allow_failures:
- php: nightly
- php: hhvm
before_install:
- travis_retry composer self-update
install:
- travis_retry composer install -o --no-interaction --prefer-source
- mkdir -p build/logs
- tests/bin/travis-init.sh
- travis_retry wget https://scrutinizer-ci.com/ocular.phar
#before_script:
# xdebug does not work with PHP 7.
#- if [[ $TRAVIS_PHP_VERSION =~ ^7 ]]; then phpenv config-rm xdebug.ini; fi
script:
- if [[ $TRAVIS_PHP_VERSION =~ ^7 ]]; then
phpdbg -qrr vendor/phpunit/phpunit/phpunit --verbose --colors --coverage-clover=build/logs/clover.xml --coverage-text;
else
vendor/bin/phpunit --verbose --colors --coverage-clover build/logs/clover.xml --coverage-text;
fi
after_script:
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
- php vendor/bin/coveralls -v
notifications:
irc: "irc.freenode.org#ouarz"
email:
recipients:
- dev-team@ouarz.net
on_success: change
on_failure: change
cache:
directories:
- $HOME/.composer/cache