Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit 85569b3

Browse files
committed
DevKit updates
1 parent 44463d7 commit 85569b3

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.travis.yml

+8-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
language: php
1717

1818
php:
19-
- 7.1
19+
- "7.1"
2020

2121
sudo: false
2222

@@ -26,12 +26,12 @@ cache:
2626
- $HOME/.composer/cache/files
2727

2828
env:
29-
matrix: SYMFONY_VERSION=4.0.*
29+
matrix: SYMFONY_VERSION="4.0.*"
3030
global:
3131
- SYMFONY_DEPRECATIONS_HELPER="0"
3232
- 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
33+
- KERNEL_CLASS="Symfony\Cmf\Bundle\SonataPhpcrAdminIntegrationBundle\Tests\Fixtures\App\Kernel"
34+
- SYMFONY_PHPUNIT_VERSION="5.7.26"
3535

3636
matrix:
3737
include:
@@ -53,7 +53,10 @@ before_install:
5353
- if [ "$SYMFONY_VERSION" != "" ]; then composer require symfony/symfony:${SYMFONY_VERSION} --no-update; fi
5454
- export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi)
5555

56-
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
5760
script:
5861
- if [ "${TEST_INSTALLATION}" == true ]; then make test_installation; else make test; fi
5962

travis.php.ini

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
memory_limit = -1

0 commit comments

Comments
 (0)