aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 8d0cf8170f15a6064d079d789d73ed98892040d7 (plain) (blame)
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
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"; else PHPUNIT_FLAGS=""; fi;

script:
    - ant prepare
    - bin/phpunit --exclude-group command-doctrine --debug $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