From 4ce43f3add75b99a38ac7192d392978ffa9cb250 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 24 Jun 2014 10:52:12 +0200 Subject: [PATCH] Disable runkit for PHP 5.6 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It's currently broken, see https://github.com/zenovich/runkit/issues/69 Signed-off-by: Michal Čihař --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 50585a07ef..17ffb82a13 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,7 +23,7 @@ before_script: - export PATH=~/.composer/vendor/bin/:$PATH - mysql -uroot -e "SET PASSWORD = PASSWORD('$TESTSUITE_PASSWORD')" ; - set -e ; if [[ -z "$LINT" ]] ; then - if [[ $TRAVIS_PHP_VERSION != "hhvm" ]] ; then + if [[ $TRAVIS_PHP_VERSION != "hhvm" -a $TRAVIS_PHP_VERSION != "5.6" ]] ; then git clone --depth=1 git://github.com/zenovich/runkit.git ; cd runkit ;