X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=.travis.yml;h=f78c2b1569b04c0ff8c3a1164e569b849732e6f2;hb=03fb6fde5f02c4fce49fbe20ed384e693b805a0a;hp=8d0cf8170f15a6064d079d789d73ed98892040d7;hpb=57162494557c5eac938a7d6800ac1b112f73efc9;p=github%2Fwallabag%2Fwallabag.git diff --git a/.travis.yml b/.travis.yml index 8d0cf817..f78c2b15 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: # - |