X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=.travis.yml;h=e2aa84f5c81f91438475c579feb4064a770b2a0a;hb=34e4968c060d0860f72f1d0120751e6cf8513dcb;hp=d68b7727e893648344978d94f4ff378589a62e15;hpb=1ab965c9440a32ab241c9f5e06bea1f7ebb202fd;p=friendica.git diff --git a/.travis.yml b/.travis.yml index d68b7727e8..e2aa84f5c8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,29 @@ --- language: php -## Friendica supports PHP version >= 5.6 +## Friendica officially supports PHP version >= 7.1 php: - - 5.6 - - 7.0 - 7.1 - 7.2 + - 7.3 -install: composer install +services: + - mysql + - redis-server + - memcached +env: + - MYSQL_HOST=localhost MYSQL_PORT=3306 MYSQL_USERNAME=travis MYSQL_PASSWORD= MYSQL_DATABASE=test + +install: + - composer install +before_script: + - cp config/local-sample.config.php config/local.config.php + - mysql -e 'CREATE DATABASE IF NOT EXISTS test;' + - mysql -utravis test < database.sql + - pecl channel-update pecl.php.net + - pecl config-set preferred_state beta + - if [[ $TRAVIS_PHP_VERSION != "7.1" ]]; then echo yes | pecl upgrade apcu; fi + - if [[ $TRAVIS_PHP_VERSION != "7.1" ]]; then phpenv config-add .travis/apcu.ini; fi + - phpenv config-add .travis/redis.ini + - phpenv config-add .travis/memcached.ini + +after_success: bash <(curl -s https://codecov.io/bash)