From 669fad1be2ecd5f33850db93d823c8dd590727a8 Mon Sep 17 00:00:00 2001 From: photodude Date: Wed, 13 May 2015 10:08:08 -0600 Subject: [PATCH 1/2] Add PHP 7, HHVM and sqlite --- .travis.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.travis.yml b/.travis.yml index 10566eaa..e9f214b0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,11 +15,25 @@ php: - 5.5 # aliased to a recent 5.6.x version - 5.6 + # aliased to a recent 7.x version + - 7.0 + # aliased to a recent hhvm version + - hhvm # optionally specify a list of environments, for example to test different RDBMS env: - DB=mysql - DB=pgsql + - DB=sqlite + +# optionally set up exclutions and allowed failures in the matrix +matrix: + exclude: + - php: hhvm + env: DB=pgsql # PDO driver for pgsql is unsupported by HHVM (3rd party install for support) + allow_failures: + - php: 7.0 + - php: hhvm # execute any number of scripts before the test run, custom env's are available as variables before_script: From 1f5c62d07ebe684033a460d7455722aa2e623460 Mon Sep 17 00:00:00 2001 From: photodude Date: Wed, 13 May 2015 17:25:38 -0600 Subject: [PATCH 2/2] Remove sqlite since it fails testing --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index e9f214b0..536278e9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,6 @@ php: env: - DB=mysql - DB=pgsql - - DB=sqlite # optionally set up exclutions and allowed failures in the matrix matrix: