]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - .travis.yml
Add multiple database tests on Travis
[github/wallabag/wallabag.git] / .travis.yml
index 8d0cf8170f15a6064d079d789d73ed98892040d7..f78c2b1569b04c0ff8c3a1164e569b849732e6f2 100644 (file)
@@ -13,14 +13,22 @@ php:
     - 5.4
     - 5.5
     - 5.6
+    - 7.0
     - hhvm
-    - nightly
+
+env:
+  - DB=mysql
+  - DB=pgsql
+  - DB=sqlite
 
 matrix:
     fast_finish: true
+    exclude:
+        - php: hhvm
+          env: DB=pgsql  # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency
     allow_failures:
+        - php: 7.0
         - php: hhvm
-        - php: nightly
 
 branches:
     only:
@@ -29,13 +37,16 @@ branches:
 install:
     - composer self-update
 
-# build coverage only on one build, to speed up results feedbacks
-# before_script:
+before_script:
+    # disable xdebug since we don't use code-coverage for now
+    - phpenv config-rm xdebug.ini
+    # build coverage only on one build, to speed up results feedbacks
     # - if [[ "$TRAVIS_PHP_VERSION" = "5.6" ]]; then PHPUNIT_FLAGS="--coverage-clover=coverage.clover"; else PHPUNIT_FLAGS=""; fi;
+    - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag;' -U postgres; fi;
 
 script:
-    - ant prepare
-    - bin/phpunit --exclude-group command-doctrine --debug $PHPUNIT_FLAGS
+    - ant prepare-$DB
+    - bin/phpunit --exclude-group command-doctrine -v
 
 # after_script:
     # - |