forked from liip/LiipFunctionalTestBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (32 loc) · 975 Bytes
/
.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
dist: trusty
language: php
php:
- 7.1
- 7.2
sudo: false
cache:
directories:
- $HOME/.composer/cache
services:
- mysql
matrix:
include:
- php: 7.1
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 7.1
env: SYMFONY_VERSION="2.8.*"
- php: 7.2
env: SYMFONY_VERSION="3.4.*"
fast_finish: true
before_install:
- echo "memory_limit = -1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/symfony=$SYMFONY_VERSION; fi
install:
# use "update" instead of "install" since it allows using the "--prefer-lowest" option
- composer update $COMPOSER_FLAGS
# http://jubianchi.fr/how-to-test-your-symfony2-project-with-behat-on-travisci.htm
before_script:
- mysql -u root -e 'CREATE DATABASE liip;'
# In phpunit.xml.dist, tests annotated with "@group mysql" are excluded,
# revert this.
script: php ./vendor/bin/phpunit --exclude-group ""