From 84561d2a6fbb6f7641a06302f3ffc9ac179ad3bb Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Thu, 12 Jun 2014 12:13:44 +0200 Subject: [PATCH] Fixed the Travis build on PHP 5.3.3 Updating PHPUnit requires OpenSSL which is not available on 5.3.3 on Travis. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a101fd3a96..e746bb7935 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ before_script: - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm-nightly" ]; then echo "extension = memcache.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;' - sudo locale-gen fr_FR.UTF-8 && sudo update-locale - COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --dev install - - phpunit --self-update + - sh -c 'if [ "$TRAVIS_PHP_VERSION" != "5.3.3" ]; then phpunit --self-update; fi;' script: - ls -d src/Symfony/*/* | parallel --gnu --keep-order 'echo "Running {} tests"; phpunit --exclude-group tty,benchmark {};' || false