From a71f58656a717eb016d52b2f86f63bf3c15c97da Mon Sep 17 00:00:00 2001 From: jeroendedauw Date: Mon, 7 Sep 2015 20:47:51 +0200 Subject: [PATCH] Write TravisCI build matrix in more readable and extandable manner Change-Id: I320c9089a0471f56721479714288a5db58cca5fd --- .travis.yml | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 206ead34aa..cbab7eeab9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,19 +8,15 @@ # language: php -php: - - hhvm - - 5.3 - -env: - - dbtype=mysql - - dbtype=postgres - -# TODO: Travis CI's hhvm does not support PostgreSQL at the moment. matrix: - exclude: - - php: hhvm - env: dbtype=postgres + fast_finish: true + include: + - env: dbtype=mysql + php: 5.3 + - env: dbtype=postgres + php: 5.3 + - env: dbtype=mysql + php: hhvm services: - mysql -- 2.20.1