mirror of
https://github.com/flarum/framework.git
synced 2024-11-24 08:43:42 +08:00
b3cbc5d1bd
fixes #1211 As we've already upgraded our minimum requirement to 7.1 there's no current need to force a constraint on dbal 2.7+.
44 lines
698 B
YAML
44 lines
698 B
YAML
language: php
|
|
sudo: false
|
|
|
|
env:
|
|
global:
|
|
- DB=mariadb
|
|
|
|
addons:
|
|
mariadb: '10.2'
|
|
|
|
php:
|
|
- 7.1
|
|
- 7.2
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- php: 7.1
|
|
addons: # to prevent mariadb
|
|
services: mysql
|
|
env:
|
|
- DB=mysql
|
|
- php: 7.2
|
|
addons: # to prevent mariadb
|
|
services: mysql
|
|
env:
|
|
- DB=mysql
|
|
|
|
before_install:
|
|
- if [[ "$DB" == "mysql" || "$DB" == "mariadb" ]]; then mysql -e 'CREATE DATABASE flarum;'; fi
|
|
before_script:
|
|
- composer self-update
|
|
- composer install
|
|
|
|
script:
|
|
- vendor/bin/phpunit --coverage-clover=coverage.xml
|
|
|
|
notifications:
|
|
email:
|
|
on_failure: change
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|