@@ -26,24 +26,22 @@ cache:
26
26
- $HOME/.composer/cache/files
27
27
28
28
env :
29
- matrix : SYMFONY_VERSION="4.0 .*"
29
+ matrix : SYMFONY_VERSION="4.2 .*"
30
30
global :
31
- - SYMFONY_DEPRECATIONS_HELPER="weak"
31
+ - SYMFONY_DEPRECATIONS_HELPER="/ weak/ "
32
32
- SYMFONY_PHPUNIT_DIR=.phpunit SYMFONY_PHPUNIT_REMOVE="symfony/yaml"
33
- - KERNEL_CLASS=Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Fixtures\App\Kernel
34
- - SYMFONY_PHPUNIT_VERSION=5.7.26
35
- - TEST_INSTALLATION=false
36
- - COMPOSER_MEMORY_LIMIT=-1
33
+ - KERNEL_CLASS="Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Fixtures\App\Kernel"
34
+ - SYMFONY_PHPUNIT_VERSION="5.7.26"
37
35
38
36
matrix :
39
37
include :
40
- - php : " 7.1 "
38
+ - php : " 7.3 "
41
39
env : STABILITY="dev" SYMFONY_VERSION="4.2.*"
42
- - php : " 7.1 "
43
- env : COMPOSER_FLAGS="--prefer-lowest" SYMFONY_VERSION="3.4.*" SYMFONY_DEPRECATIONS_HELPER="0 "
44
- - php : " 7.1 "
40
+ - php : " 7.2 "
41
+ env : COMPOSER_FLAGS="--prefer-lowest" SYMFONY_VERSION="3.4.*" SYMFONY_DEPRECATIONS_HELPER="/weak/ "
42
+ - php : " 7.3 "
45
43
env : STABILITY="dev" SYMFONY_VERSION="4.0.*"
46
- - php : " 7.1 "
44
+ - php : " 7.3 "
47
45
env : STABILITY="dev" SYMFONY_VERSION="4.1.*"
48
46
fast_finish : true
49
47
@@ -55,7 +53,10 @@ before_install:
55
53
- if [ "$SYMFONY_VERSION" != "" ]; then composer require symfony/symfony:${SYMFONY_VERSION} --no-update; fi
56
54
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
57
55
58
- install : travis_wait composer update --prefer-dist $COMPOSER_FLAGS
56
+ install :
57
+ - phpenv config-add travis.php.ini
58
+ - php -ini | grep memory_limit
59
+ - travis_wait composer update --prefer-dist $COMPOSER_FLAGS
59
60
script :
60
61
- if [ "${TEST_INSTALLATION}" == true ]; then make test_installation; else make test; fi
61
62
0 commit comments