From 7d986b28c67e25c25b73625af13967137a426d0f Mon Sep 17 00:00:00 2001
From: Andreas Gohr <andi@splitbrain.org>
Date: Sat, 25 Apr 2015 08:54:02 +0200
Subject: [PATCH] new travis config

test (but allow fails) against hhvm and PHP nightly (PHP7) builds
remove phpunit pinning
---
 .travis.yml | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 0bef94048..0f9d2331a 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,13 +4,17 @@ php:
   - "5.5"
   - "5.4"
   - "5.3"
+  - "hhvm"
+  - "nightly"
+matrix:
+  allow_failures:
+    - php:
+      - "hhvm"
+      - "nightly"
 notifications:
   irc:
     channels:
         - "chat.freenode.net#dokuwiki"
     on_success: change
     on_failure: change
-install:
-  - wget https://phar.phpunit.de/phpunit-4.3.5.phar -O _test/phpunit
-  - chmod 755 _test/phpunit
-script: cd _test && ./phpunit --verbose --stderr
+script: cd _test && phpunit --verbose --stderr
-- 
GitLab