forked from craue/CraueConfigBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
82 lines (73 loc) · 2.44 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
language: php
php:
- 5.4
- 5.5
- 5.6
- 7.0
- 7.1
- 7.2
- hhvm
env:
- SYMFONY_VERSION='2.7.*'
matrix:
include:
- php: 5.3
dist: precise
- php: 5.3
dist: precise
env: DEPS='lowest' SYMFONY_DEPRECATIONS_HELPER='666'
- php: 5.6
env: DEPS='unmodified'
- php: 5.6
env: SYMFONY_VERSION='2.8.*'
- php: 5.6
env: SYMFONY_VERSION='3.2.*'
- php: 5.6
env: SYMFONY_VERSION='3.3.*'
- php: 5.6
env: SYMFONY_VERSION='3.4.*'
- php: 7.1
env: SYMFONY_VERSION='4.0.*'
- php: 7.1
env: SYMFONY_VERSION='4.1.*' MIN_STABILITY='dev'
allow_failures:
- env: SYMFONY_VERSION='4.1.*' MIN_STABILITY='dev'
fast_finish: true
install:
# set unlimited memory_limit
- if [ "${TRAVIS_PHP_VERSION}" != 'hhvm' ]; then INI_FILE=~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; else INI_FILE=/etc/hhvm/php.ini; fi;
- echo "memory_limit = -1" >> "${INI_FILE}"
# disable Xdebug for better Composer performance
- if [ "${TRAVIS_PHP_VERSION}" != 'hhvm' ]; then mv ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini xdebug.ini; fi;
# install dependencies using Composer
- bash .travis_install_dependencies.sh
# show installed dependencies
- composer show
before_script:
# set up MySQL
- mysql -u root -e 'CREATE DATABASE IF NOT EXISTS test;'
- mysql -u root -e 'GRANT USAGE ON *.* TO "travis"@"localhost"; DROP USER "travis"@"localhost";'
- mysql -u root -e 'CREATE USER "travis"@"localhost" IDENTIFIED BY PASSWORD "";'
- mysql -u root -e 'GRANT ALL ON test.* TO "travis"@"localhost"; FLUSH PRIVILEGES;'
# create folder for code coverage data
- mkdir -p build/logs
script:
# validate composer.json
- composer validate --strict --no-check-lock
# enable Xdebug for code coverage analysis
- if [ "${TRAVIS_PHP_VERSION}" != 'hhvm' ]; then mv xdebug.ini ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini; fi;
# run PHPUnit
- vendor/bin/phpunit -v --coverage-clover build/logs/clover.xml
# upload code coverage data
- if [ "${TRAVIS_PHP_VERSION}" != 'hhvm' ]; then travis_retry wget -q https://github.com/satooshi/php-coveralls/releases/download/v1.0.1/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
- vendor