mantis-matrix-integration – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 dist: trusty
2 language: php
3  
4 php:
5 - 7.0
6 - 7.1
7 - 7.2
8 - 7.3
9 - hhvm
10  
11 # This triggers builds to run on the new TravisCI infrastructure.
12 # See: http://docs.travis-ci.com/user/workers/container-based-infrastructure/
13 sudo: false
14  
15 ## Cache composer
16 cache:
17 directories:
18 - $HOME/.composer/cache
19  
20 matrix:
21 include:
22 - php: 5.6
23 env: 'COMPOSER_FLAGS="--prefer-stable --prefer-lowest"'
24  
25 before_script:
26 - travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
27  
28 script:
29 - vendor/bin/phpunit --coverage-text --coverage-clover=coverage.clover
30  
31 after_script:
32 - |
33 if [[ "$TRAVIS_PHP_VERSION" != 'hhvm' && "$TRAVIS_PHP_VERSION" != '7.0' ]]; then
34 wget https://scrutinizer-ci.com/ocular.phar
35 php ocular.phar code-coverage:upload --format=php-clover coverage.clover
36 fi