From 8944eb3d21ec85344b0b4fee6defe8b2db253939 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 26 Feb 2015 15:27:53 +0100 Subject: [PATCH] Try running tests with PHP nightly (upcoming PHP 7) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- .travis.yml | 3 +++ test/install-runkit | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 3f461b86f1..c3d29e007f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,7 @@ php: - "5.4" - "5.3" - hhvm + - nightly sudo: false @@ -59,6 +60,8 @@ matrix: env: PHPUNIT_ARGS="--group selenium" SELENIUM="yes" - php: hhvm env: PHPUNIT_ARGS="--exclude-group selenium" + - php: nightly + env: PHPUNIT_ARGS="--exclude-group selenium" fast_finish: true include: - php: 5.6 diff --git a/test/install-runkit b/test/install-runkit index 1293afd4cf..35fb5441d6 100755 --- a/test/install-runkit +++ b/test/install-runkit @@ -6,7 +6,7 @@ git clone --depth=1 git://github.com/zenovich/runkit.git pushd runkit -if [ $TRAVIS_PHP_VERSION = "5.6" ] ; then +if [ $TRAVIS_PHP_VERSION = "5.6" -o $TRAVIS_PHP_VERSION = "nightly" ] ; then wget https://github.com/zenovich/runkit/pull/73.diff patch -p1 < 73.diff fi