forked from netbull/MobileDetectBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
43 lines (34 loc) · 1.09 KB
/
.travis.yml
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
sudo: false
language:
- php
cache:
directories:
- $HOME/.composer/cache/files
php:
- hhvm
- 7.1
- 7.2
- 7.4
- 8.0
dist: trusty
matrix:
allow_failures:
- php: hhvm
fast_finish: true
include:
- php: 7.1
env: SYMFONY_VERSION='4.0.*'
- php: 7.2
env: SYMFONY_VERSION='4.0.*'
- php: 7.2
env: SYMFONY_VERSION='5.0.*'
before_install:
- if [[ "$TRAVIS_PHP_VERSION" != "5.6" && "$TRAVIS_PHP_VERSION" != "hhvm" ]]; then phpenv config-rm xdebug.ini; fi
- composer self-update
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --dev --no-update symfony/framework-bundle:${SYMFONY_VERSION}; fi
install: composer update $COMPOSER_FLAGS --dev --no-interaction --prefer-dist
script:
- if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then mkdir -p build/logs; fi
- if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then vendor/bin/phpunit --coverage-clover build/logs/clover.xml; else vendor/bin/phpunit; fi
after_script:
- if [ "$TRAVIS_PHP_VERSION" == "5.6" ]; then php vendor/bin/coveralls -v; fi