Friendica Communications Platform
(please note that this is a clone of the repository at github, issues are handled there)
https://friendi.ca
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
671 B
25 lines
671 B
--- |
|
language: php |
|
## Friendica supports PHP version >= 5.6.1 |
|
php: |
|
- 5.6 |
|
- 7.0 |
|
- 7.1 |
|
- 7.2 |
|
|
|
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 |
|
- 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)
|
|
|