aboutsummaryrefslogblamecommitdiffhomepage
path: root/.travis.yml
blob: 6e9388263b6d3e3f0db688cadeb4aad22b07596a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
             
 
                                         

           





                               
    




             

       



                      
 
         




                          
 
                                                                 
              
                                                                                                         

       








                                                                                    
language: php

# faster builds on docker-container setup
sudo: false

# cache vendor dirs
cache:
    directories:
        - vendor
        - $HOME/.composer/cache

php:
    - 5.4
    - 5.5
    - 5.6
    - hhvm
    - nightly

matrix:
    fast_finish: true
    allow_failures:
        - php: hhvm
        - php: nightly

branches:
    only:
        - v2

install:
    - composer self-update

# build coverage only on one build, to speed up results feedbacks
before_script:
    - if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then PHPUNIT_FLAGS="--coverage-clover=coverage.clover"; fi;

script:
    - ant prepare
    - phpunit $PHPUNIT_FLAGS

after_script:
    - |
        if [ $TRAVIS_PHP_VERSION = '5.6' ]; then
            wget https://scrutinizer-ci.com/ocular.phar
            php ocular.phar code-coverage:upload --format=php-clover coverage.clover
        fi