You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
language: php
|
|
|
|
php:
|
|
|
|
- 7.2
|
|
|
|
- 7.3
|
|
|
|
|
|
|
|
services:
|
|
|
|
- mysql
|
|
|
|
- postgresql
|
|
|
|
|
|
|
|
cache:
|
|
|
|
directories:
|
|
|
|
- $HOME/.composer/cache
|
|
|
|
- $HOME/vendor
|
|
|
|
|
|
|
|
before_install:
|
|
|
|
- mysql -e 'CREATE DATABASE postfixadmin;'
|
|
|
|
- psql -c 'create database postfixadmin;' -U postgres
|
|
|
|
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- travis_retry composer install --no-interaction --prefer-source --dev
|
|
|
|
- mkdir -p build/logs
|
|
|
|
|
|
|
|
script:
|
|
|
|
- composer build
|
|
|
|
- DATABASE=sqlite vendor/bin/phpunit tests/
|
|
|
|
- DATABASE=mysql vendor/bin/phpunit --coverage-clover=build/logs/clover.xml tests/
|
|
|
|
- DATABASE=postgresql vendor/bin/phpunit tests/
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- travis_retry bash <(curl -s https://codecov.io/bash) -f build/logs/clover.xml
|
|
|
|
- travis_retry php vendor/bin/php-coveralls
|