comparison vendor/phpunit/php-code-coverage/.travis.yml @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
1 language: php 1 language: php
2 2
3 sudo: false
4
3 php: 5 php:
4 - 5.3.3 6 - 7.0
5 - 5.3 7 - 7.1
6 - 5.4 8 - 7.2
7 - 5.5 9 - master
8 - 5.6
9 10
10 before_script: 11 matrix:
11 - COMPOSER_ROOT_VERSION=dev-master composer install --prefer-source 12 allow_failures:
13 - php: master
14 fast_finish: true
12 15
13 script: vendor/bin/phpunit --configuration ./build/travis-ci.xml 16 env:
17 matrix:
18 - DEPENDENCIES="high"
19 - DEPENDENCIES="low"
20 global:
21 - DEFAULT_COMPOSER_FLAGS="--no-interaction --no-ansi --no-progress --no-suggest"
22
23 before_install:
24 - composer self-update
25 - composer clear-cache
26
27 install:
28 - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update $DEFAULT_COMPOSER_FLAGS; fi
29 - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update $DEFAULT_COMPOSER_FLAGS --prefer-lowest; fi
30
31 script:
32 - if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
33 - if [[ "$DRIVER" = 'xdebug' ]]; then vendor/bin/phpunit --coverage-clover=coverage.xml; fi
34
35 after_success:
36 - bash <(curl -s https://codecov.io/bash)
14 37
15 notifications: 38 notifications:
16 email: false 39 email: false
17 irc: 40
18 channels:
19 - "irc.freenode.org#phpunit"
20 use_notice: true