From dd6c663070e4510b6fe6f28b9a12ce3c5be43cd2 Mon Sep 17 00:00:00 2001 From: Christian Kuhn <lolli@schwarzbu.ch> Date: Sun, 7 Sep 2014 21:43:24 +0200 Subject: [PATCH] [TASK] Travis-ci: Disable apc in PHP 5.4 APC for travis-ci on cli was disabled for PHP 5.3 already because of instability. This patch kicks out APC for PHP 5.4 as well after recent failed travis runs in this area. Releases: master, 6.2 Change-Id: I1182a0fcfc5f94f7f778c9f0fde5f5d8672b17ee Reviewed-on: http://review.typo3.org/32623 Reviewed-by: Anja Leichsenring <aleichsenring@ab-softlab.de> Tested-by: Anja Leichsenring <aleichsenring@ab-softlab.de> --- .travis.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index f252064cfa6d..23b30742d621 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,12 +27,6 @@ notifications: on_failure: always before_script: - - > - if [[ "$TRAVIS_PHP_VERSION" = "5.4" ]]; then - echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; - echo "apc.enable_cli=1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; - echo "apc.slam_defense=0" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; - fi - > if [[ "$TRAVIS_PHP_VERSION" = "5.3" || "$TRAVIS_PHP_VERSION" = "5.4" ]]; then pecl install igbinary > /dev/null; -- GitLab