forked from FriendsOfSymfony/FOSUserBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
41 lines (33 loc) · 945 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
language: php
php:
- 5.5
- 5.6
- 7.1
- 7.2
- 7.3
env:
global:
- TARGET=test
matrix:
fast_finish: true
include:
- php: 7.0
env: TARGET=cs_dry_run
- php: 5.5
env: COMPOSER_FLAGS="--prefer-lowest"
- php: 5.6
env: DEPENDENCIES="symfony/lts:^2"
- php: 7.1
env: DEPENDENCIES="symfony/lts:^3"
sudo: false
cache:
directories:
- $HOME/.composer/cache
before_install:
- echo "memory_limit=4G" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
# To be removed when this issue will be resolved: https://github.com/composer/composer/issues/5355
- if [[ "$COMPOSER_FLAGS" == *"--prefer-lowest"* ]]; then composer update --prefer-dist --no-interaction --prefer-stable --quiet; fi
- if [ "$DEPENDENCIES" != "" ]; then composer require --no-update $DEPENDENCIES; fi;
install: composer update --prefer-dist --no-interaction $COMPOSER_FLAGS
script:
- make $TARGET