]> git.mxchange.org Git - friendica.git/blobdiff - .travis.yml
Merge pull request #7988 from friendica/MrPetovan-notice
[friendica.git] / .travis.yml
index d3fffc6936cb032f0df5b3cbc8b9030fef1eadc0..e306787ff16af3fc3e31c027f86a6d3cbcba1618 100644 (file)
@@ -1,4 +1,29 @@
 ---
 language: php
-php: 5.6
-install: composer install
+## Friendica officially supports PHP version >= 7.1
+php:
+ - 7.1
+ - 7.2
+ - 7.3
+
+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
+ - phpenv config-add .travis/redis.ini
+ - phpenv config-add .travis/memcached.ini
+
+script: vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-clover clover.xml
+
+after_success: bash <(curl -s https://codecov.io/bash)