X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=.travis.yml;h=a387fc135e0dc1e12ac675ba6f545c2612a9f7c6;hb=782390a80effe3dbf7071de137e026067b116c93;hp=1a33198a283ada9edf0a7c446f788eaa6dfc6bef;hpb=0dc09439efeb01e8c56d3417922aa8fccce01ead;p=github%2Fwallabag%2Fwallabag.git diff --git a/.travis.yml b/.travis.yml index 1a33198a..a387fc13 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,7 @@ php: - 5.5 - 5.6 - 7.0 + - 7.1 - nightly - hhvm @@ -38,6 +39,7 @@ matrix: env: DB=pgsql # driver for PostgreSQL currently unsupported by HHVM, requires 3rd party dependency allow_failures: - php: hhvm + - php: nightly # exclude v1 branches branches: @@ -46,7 +48,8 @@ branches: before_script: - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini; fi; - - if [[ $TRAVIS_PHP_VERSION != hhvm ]]; then phpenv config-rm xdebug.ini; fi; + # xdebug isn't enable for PHP 7.1 + - if [[ $TRAVIS_PHP_VERSION != '7.1' && $TRAVIS_PHP_VERSION != 'hhvm' ]]; then phpenv config-rm xdebug.ini; fi - composer self-update --no-progress - if [[ "$DB" = "pgsql" ]]; then psql -c 'create database wallabag_test;' -U postgres; fi;