From e41151879e548f489c79821059c03421d298ad40 Mon Sep 17 00:00:00 2001 From: Antoine Corcy Date: Tue, 17 Dec 2013 00:20:39 +0100 Subject: [PATCH] add allow_failure for hhvm to travis-ci --- .travis.yml | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 64e486ce..adae51d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,17 @@ language: php -before_script: - - composer install --dev + php: - - 5.3 - - 5.4 - - hhvm + - 5.3 + - 5.4 + - 5.5 + - hhvm + +matrix: + allow_failures: + - php: hhvm + +before_script: + - composer self-update + - composer install --dev + script: phpunit