From 3928fee2ea822a54339eaf79c015479c124e6a60 Mon Sep 17 00:00:00 2001 From: Gintautas Miselis Date: Mon, 27 Jan 2020 10:57:09 +0200 Subject: [PATCH] [Travis] Unlimited memory for composer --- .travis.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 5d007bc..818f2b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,8 +14,8 @@ sudo: false install: - '[[ -z "$CI_USER_TOKEN" ]] || composer config github-oauth.github.com ${CI_USER_TOKEN};' - - travis_retry composer self-update && composer --version - - travis_retry composer install --prefer-dist --no-interaction + - COMPOSER_MEMORY_LIMIT=-1 composer self-update && composer --version + - COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-dist --no-interaction - phpenv config-rm xdebug.ini - if [[ "$TRAVIS_PHP_VERSION" == "7.3" ]]; then pecl install -f pcov; fi