comparison vendor/phpunit/phpunit-mock-objects/.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 before_script: 3 sudo: false
4 - composer self-update
5 - composer install --no-interaction --prefer-source --dev
6
7 script: ./vendor/bin/phpunit --configuration ./build/travis-ci.xml
8 4
9 php: 5 php:
10 - 5.3.3
11 - 5.3
12 - 5.4
13 - 5.5
14 - 5.6
15 - 7.0 6 - 7.0
16 - hhvm 7 - 7.1
8 - 7.2
9 - master
10
11 env:
12 matrix:
13 - DEPENDENCIES="high"
14 - DEPENDENCIES="low"
15 global:
16 - DEFAULT_COMPOSER_FLAGS="--no-interaction --no-ansi --no-progress --no-suggest"
17
18 before_install:
19 - composer self-update
20 - composer clear-cache
21
22 install:
23 - if [[ "$DEPENDENCIES" = 'high' ]]; then travis_retry composer update $DEFAULT_COMPOSER_FLAGS; fi
24 - if [[ "$DEPENDENCIES" = 'low' ]]; then travis_retry composer update $DEFAULT_COMPOSER_FLAGS --prefer-lowest; fi
25
26 script:
27 - ./vendor/bin/phpunit --coverage-clover=coverage.xml
28
29 after_success:
30 - bash <(curl -s https://codecov.io/bash)
17 31
18 notifications: 32 notifications:
19 email: false 33 email: false
20 webhooks:
21 urls:
22 - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960
23 on_success: always
24 on_failure: always
25 on_start: false
26 34