]> git.mxchange.org Git - friendica.git/blobdiff - .travis.yml
Attach: store, update, delete. Model and views
[friendica.git] / .travis.yml
index 82b5a5d218bd3de32b17a142b8e22026263b1e5b..f9f9acff197bc402809bd4703fc750e519d4f7ad 100644 (file)
@@ -1,6 +1,6 @@
 ---
 language: php
-## Friendica supports PHP version >= 5.6
+## Friendica supports PHP version >= 5.6.1
 php:
  - 5.6
  - 7.0
@@ -9,12 +9,17 @@ php:
 
 services:
  - mysql
+ - redis-server
+ - memcached
 env:
- - USER=travis DB=test
+ - 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;'
- # In order to avoid bin/worker.php warnings
- - touch .htconfig.php
+ - mysql -utravis test < database.sql
+ - echo "extension=redis.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
+ - echo "extension=memcached.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
+after_success: bash <(curl -s https://codecov.io/bash)