forked from extern/egroupware
43 lines
691 B
YAML
43 lines
691 B
YAML
language: php
|
|
php:
|
|
- 5.4
|
|
- 5.5
|
|
- 5.6
|
|
- 7
|
|
- hhvm
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
allow_failures:
|
|
- php: hhvm
|
|
|
|
#env:
|
|
#matrix:
|
|
#- LOWEST_DEPS=""
|
|
#- LOWEST_DEPS="--prefer-lowest"
|
|
|
|
#services:
|
|
# - mysql
|
|
# - postgres
|
|
|
|
sudo: false
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- myrepos
|
|
|
|
before_script:
|
|
# - mysql -e 'create database egroupware'
|
|
- rm -f ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
|
|
#- composer update --prefer-source $LOWEST_DEPS
|
|
- mr --trust-all --stats up
|
|
|
|
script:
|
|
#- find . -name "*.php" | xargs -n1 php -l
|
|
./doc/php_syntax_check.sh
|
|
#- ./vendor/bin/sabre-cs-fixer fix . --dry-run --diff
|
|
|
|
cache:
|
|
directories:
|
|
- $HOME/.composer/cache |