]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - .travis.yml
Add multiple database tests on Travis
[github/wallabag/wallabag.git] / .travis.yml
index 1d90a7489b738ed7351f5ca2a3a4a58c7b2ece7b..f78c2b1569b04c0ff8c3a1164e569b849732e6f2 100644 (file)
@@ -1,18 +1,56 @@
 language: php
 
+# faster builds on docker-container setup
+sudo: false
+
+# cache vendor dirs
+cache:
+    directories:
+        - vendor
+        - $HOME/.composer/cache
+
 php:
-  - 5.4
-  - 5.5
-  - 5.6
+    - 5.4
+    - 5.5
+    - 5.6
+    - 7.0
+    - hhvm
+
+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
 
 branches:
-  only:
-    - refactor
+    only:
+        - v2
+
+install:
+    - composer self-update
 
 before_script:
-  - composer self-update
-  - echo 'date.timezone = "Europe/Paris"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
+    # 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 -f app/build.xml prepare
-  - phpunit -c app  --coverage-text
+    - ant prepare-$DB
+    - bin/phpunit --exclude-group command-doctrine -v
+
+# after_script:
+    # - |
+        # if [ $TRAVIS_PHP_VERSION = '5.6' ]; then
+            # wget https://scrutinizer-ci.com/ocular.phar
+            # php ocular.phar code-coverage:upload --format=php-clover coverage.clover
+        # fi