From: Jeremy Benoist Date: Tue, 22 Jan 2019 20:10:28 +0000 (+0100) Subject: Avoid creating PG database on Travis X-Git-Url: https://git.immae.eu/?p=github%2Fwallabag%2Fwallabag.git;a=commitdiff_plain;h=e19fc0266514efc13efe56f55ddbf3ecc940c2e8 Avoid creating PG database on Travis And Travis build on PHP 7.3 should not fail. --- diff --git a/.travis.yml b/.travis.yml index ac64839d..0ca1e192 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,7 +35,6 @@ matrix: env: CS_FIXER=run VALIDATE_TRANSLATION_FILE=run ASSETS=build DB=sqlite allow_failures: - php: nightly - - php: 7.3 # exclude v1 branches branches: @@ -56,7 +55,6 @@ before_script: # xdebug isn't enable for PHP 7.1 - if [[ ! $PHP = hhvm* ]]; then phpenv config-rm xdebug.ini || echo "xdebug not available"; fi - composer self-update --no-progress - - if [[ $DB = pgsql ]]; then psql -c 'create database wallabag_test;' -U postgres; fi; script: - travis_wait bash composer install -o --no-interaction --no-progress --prefer-dist