forked from craue/CraueFormFlowBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
52 lines (43 loc) · 1.18 KB
/
.travis.yml
File metadata and controls
52 lines (43 loc) · 1.18 KB
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
46
47
48
49
50
51
52
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
env:
- SYMFONY_VERSION='2.7.*'
matrix:
include:
- php: 5.3
env: USE_DEPS='lowest' SYMFONY_DEPRECATIONS_HELPER='2'
- php: 5.6
env: SYMFONY_VERSION='2.7.*' SYMFONY__DB__DRIVER='pdo_sqlite'
- php: 5.6
env: SYMFONY_VERSION='2.8.*'
- php: 5.6
env: SYMFONY_VERSION='3.0.*'
- php: 5.6
env: SYMFONY_VERSION='3.1.*' MIN_STABILITY='dev'
allow_failures:
- env: SYMFONY_VERSION='3.1.*' MIN_STABILITY='dev'
fast_finish: true
install:
- if [ "${TRAVIS_PHP_VERSION}" != 'hhvm' ]; then phpenv config-add travis.php.ini; fi;
- bash travis_install_dependencies.sh
before_script:
- mkdir -p build/logs
script:
- vendor/bin/phpunit -v --coverage-clover build/logs/clover.xml
- if [ "${TRAVIS_PHP_VERSION}" != 'hhvm' ]; then travis_retry wget -q https://github.com/satooshi/php-coveralls/releases/download/v1.0.0/coveralls.phar && travis_retry php coveralls.phar -v; fi;
notifications:
email:
on_success: always
on_failure: always
# use container-based infrastructure
sudo: false
# cache Composer's package cache
cache:
directories:
- $HOME/.composer/cache/files